mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
services: nfs: Add verbosity control to idmap-service-type.
* gnu/services/nfs.scm (<idmap-configuration>)[verbosity]: New field. (idmap-configuration-verbosity): New procedure. (idmap-service-type): Use it. * doc/guix.texi (Network File System): Document it.
This commit is contained in:
parent
af32ea3583
commit
2a23942e3f
2 changed files with 10 additions and 1 deletions
|
@ -167,7 +167,9 @@
|
|||
(domain idmap-configuration-domain
|
||||
(default #f))
|
||||
(nfs-utils idmap-configuration-nfs-utils
|
||||
(default nfs-utils)))
|
||||
(default nfs-utils))
|
||||
(verbosity idmap-configuration-verbosity
|
||||
(default 0)))
|
||||
|
||||
(define idmap-service-type
|
||||
(let ((proc
|
||||
|
@ -185,6 +187,10 @@
|
|||
(plain-file "idmapd.conf"
|
||||
(string-append
|
||||
"\n[General]\n"
|
||||
"Verbosity = "
|
||||
(number->string
|
||||
(idmap-configuration-verbosity config))
|
||||
"\n"
|
||||
(if domain
|
||||
(format #f "Domain = ~a\n" domain)
|
||||
"")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue