services: nfs: Add verbosity control to idmap-service-type.
authorRicardo Wurmus <rekado@elephly.net>
Fri, 3 Jan 2020 17:15:00 +0000 (18:15 +0100)
committerRicardo Wurmus <rekado@elephly.net>
Wed, 8 Jan 2020 22:56:16 +0000 (23:56 +0100)
* 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.

doc/guix.texi
gnu/services/nfs.scm

index bb0ef17..0f498a0 100644 (file)
@@ -22044,6 +22044,9 @@ The local NFSv4 domain name.
 This must be a string or @code{#f}.
 If it is @code{#f} then the daemon will use the host's fully qualified domain name.
 
+@item @code{verbosity} (default: @code{0})
+The verbosity level of the daemon.
+
 @end table
 @end deftp
 
index 9fb95bd..054dad0 100644 (file)
   (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
              (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)
                               "")