services: nscd: ‘log-file’ defaults to #f.
* gnu/services/base.scm (<nscd-configuration>)[log-file]: Default to #f. * doc/guix.texi (Base Services): Clarify documentation. Change-Id: Ia75914fc2665db13bef688d53659083a615ebef4master
parent
bc06affabc
commit
8f0878da8d
|
@ -19458,9 +19458,11 @@ the nscd---e.g., @code{(list @var{nss-mdns})}.
|
||||||
Package object denoting the GNU C Library providing the @command{nscd}
|
Package object denoting the GNU C Library providing the @command{nscd}
|
||||||
command.
|
command.
|
||||||
|
|
||||||
@item @code{log-file} (default: @code{"/var/log/nscd.log"})
|
@item @code{log-file} (default: @code{#f})
|
||||||
Name of the nscd log file. This is where debugging output goes when
|
Name of the nscd log file. Debugging output goes to that file when
|
||||||
@code{debug-level} is strictly positive.
|
@code{debug-level} is strictly positive, or to standard error if it is
|
||||||
|
@code{#f}. Regular messages are written to syslog when
|
||||||
|
@code{debug-level} is zero, regardless of the value of @code{log-file}.
|
||||||
|
|
||||||
@item @code{debug-level} (default: @code{0})
|
@item @code{debug-level} (default: @code{0})
|
||||||
Integer denoting the debugging levels. Higher numbers mean that more
|
Integer denoting the debugging levels. Higher numbers mean that more
|
||||||
|
|
|
@ -1285,7 +1285,7 @@ the tty to run, among other things."
|
||||||
make-nscd-configuration
|
make-nscd-configuration
|
||||||
nscd-configuration?
|
nscd-configuration?
|
||||||
(log-file nscd-configuration-log-file ;string
|
(log-file nscd-configuration-log-file ;string
|
||||||
(default "/var/log/nscd.log"))
|
(default #f))
|
||||||
(debug-level nscd-debug-level ;integer
|
(debug-level nscd-debug-level ;integer
|
||||||
(default 0))
|
(default 0))
|
||||||
;; TODO: See nscd.conf in glibc for other options to add.
|
;; TODO: See nscd.conf in glibc for other options to add.
|
||||||
|
|
Reference in New Issue