guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/13: services: cups: Create /var/cache on activation.


From: guix-commits
Subject: 13/13: services: cups: Create /var/cache on activation.
Date: Wed, 5 Jun 2019 11:27:34 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 36273ebde20db42d864e315c954d84d2b4957070
Author: Alex Griffin <address@hidden>
Date:   Sun Jun 2 16:26:47 2019 -0500

    services: cups: Create /var/cache on activation.
    
    * gnu/services/cups.scm (%cups-activation): Create /var/cache if it doesn't
    exist yet.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/services/cups.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/services/cups.scm b/gnu/services/cups.scm
index 9125139..9d21b6e 100644
--- a/gnu/services/cups.scm
+++ b/gnu/services/cups.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2016 Andy Wingo <address@hidden>
 ;;; Copyright © 2017 Clément Lassieur <address@hidden>
 ;;; Copyright © 2018 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2019 Alex Griffin <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -895,6 +896,7 @@ IPP specifications.")
           (mkdir-p/perms "/var/spool/cups" user #o755)
           (mkdir-p/perms "/var/spool/cups/tmp" user #o755)
           (mkdir-p/perms "/var/log/cups" user #o755)
+          (mkdir-p/perms "/var/cache/cups" user #o770)
           (mkdir-p/perms "/etc/cups" user #o755)
           (mkdir-p/perms "/etc/cups/ssl" user #o700)
           ;; This certificate is used for HTTPS connections to the CUPS web



reply via email to

[Prev in Thread] Current Thread [Next in Thread]