mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
services: cups: Support CUPS 2.3.3op2's LogFileGroup directive.
* gnu/services/cups.scm (<files-configuration>): Add a log-file-group field. * doc/guix.texi (Printing Services): Document it.
This commit is contained in:
parent
e02123bd94
commit
c655bbb376
2 changed files with 9 additions and 0 deletions
|
@ -18463,6 +18463,12 @@ programs.
|
|||
Defaults to @samp{"lp"}.
|
||||
@end deftypevr
|
||||
|
||||
@deftypevr {@code{files-configuration} parameter} string log-file-group
|
||||
Specifies the group name or ID that will be used for log files.
|
||||
|
||||
Defaults to @samp{"lpadmin"}.
|
||||
@end deftypevr
|
||||
|
||||
@deftypevr {@code{files-configuration} parameter} string log-file-perm
|
||||
Specifies the permissions for all log files that the scheduler writes.
|
||||
|
||||
|
|
|
@ -418,6 +418,9 @@ (define-configuration files-configuration
|
|||
(string "lp")
|
||||
"Specifies the group name or ID that will be used when executing external
|
||||
programs.")
|
||||
(log-file-group
|
||||
(string "lpadmin")
|
||||
"Specifies the group name or ID that will be used for log files.")
|
||||
(log-file-perm
|
||||
(string "0644")
|
||||
"Specifies the permissions for all log files that the scheduler writes.")
|
||||
|
|
Loading…
Reference in a new issue