all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#36060] [PATCH] services: cups: Create /var/cache on activation.
@ 2019-06-02 21:31 Alex Griffin
       [not found] ` <handler.36060.B.15595112395993.ack@debbugs.gnu.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Griffin @ 2019-06-02 21:31 UTC (permalink / raw)
  To: 36060

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

I recently ran into the situation where CUPS wouldn't start because /var/cache didn't exist yet. This patch just creates /var/cache on CUPS activation.

-- 
Alex Griffin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-services-cups-Create-var-cache-on-activation.patch --]
[-- Type: text/x-patch; name="0001-services-cups-Create-var-cache-on-activation.patch", Size: 1202 bytes --]

From 4a2335d70088ad485ca2f91d5f21a4e7078fb927 Mon Sep 17 00:00:00 2001
From: Alex Griffin <a@ajgrf.com>
Date: Sun, 2 Jun 2019 16:26:47 -0500
Subject: [PATCH] services: cups: Create /var/cache on activation.

* gnu/services/cups.scm (%cups-activation): Create /var/cache if it doesn't
exist yet.
---
 gnu/services/cups.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/services/cups.scm b/gnu/services/cups.scm
index 9125139ef3..4cdc83452f 100644
--- a/gnu/services/cups.scm
+++ b/gnu/services/cups.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2016 Andy Wingo <wingo@pobox.com>
 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -897,6 +898,7 @@ IPP specifications.")
           (mkdir-p/perms "/var/log/cups" user #o755)
           (mkdir-p/perms "/etc/cups" user #o755)
           (mkdir-p/perms "/etc/cups/ssl" user #o700)
+          (mkdir-p "/var/cache")
           ;; This certificate is used for HTTPS connections to the CUPS web
           ;; interface.
           (create-self-signed-certificate-if-absent
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-06-05 15:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-02 21:31 [bug#36060] [PATCH] services: cups: Create /var/cache on activation Alex Griffin
     [not found] ` <handler.36060.B.15595112395993.ack@debbugs.gnu.org>
2019-06-03 19:57   ` Alex Griffin
2019-06-03 20:01   ` Alex Griffin
2019-06-05 15:17     ` bug#36060: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.