Re: [PATCH] gnu: Add CUPS service.

2016-10-10 Thread Andy Wingo
Hi :) I made an update to this patch before I saw your feedback. I fixed some things. Some comments I will incorporate without reply. The mail below replies only to those remaining parts. On Thu 06 Oct 2016 22:25, l...@gnu.org (Ludovic Courtès) writes: >> +(define %cups-activation >> + ;; Ac

Re: [PATCH] gnu: Add CUPS service.

2016-10-06 Thread Ludovic Courtès
Hello! Andy Wingo skribis: > * gnu/services/cups.scm: New file. > * gnu/local.mk (GNU_SYSTEM_MODULES): Add gnu/services/cups.scm. > * doc/guix.texi (Printing Services): New section. Awesome! > +One way you might want to customize CUPS is to enable or disable the web > interface. You can do t

Re: [PATCH] gnu: Add CUPS service.

2016-10-06 Thread Ludovic Courtès
Danny Milosavljevic skribis: >> + (define %cups-accounts >> + (list (user-group (name "cups") (system? #t)) >> +(user-account >> + (name "cups") >> + (group "cups") >> + (system? #t) >> + (comment "CUPS print server user") >> + (home-directory "/v

Re: [PATCH] gnu: Add CUPS service.

2016-10-05 Thread Danny Milosavljevic
Hi, nice! > + (define %cups-accounts > + (list (user-group (name "cups") (system? #t)) > +(user-account > + (name "cups") > + (group "cups") > + (system? #t) > + (comment "CUPS print server user") > + (home-directory "/var/empty") > + (sh

[PATCH] gnu: Add CUPS service.

2016-10-05 Thread Andy Wingo
* gnu/services/cups.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add gnu/services/cups.scm. * doc/guix.texi (Printing Services): New section. --- doc/guix.texi | 552 + gnu/local.mk | 1 + gnu/services/cups.scm | 833 +++