diff options
-rw-r--r-- | gnu/services/dns.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm index 043c34599c..49d924b724 100644 --- a/gnu/services/dns.scm +++ b/gnu/services/dns.scm @@ -812,23 +812,23 @@ cache.size = 100 * MB "--pid-file=/run/dnsmasq.pid" #$@(if no-hosts? '("--no-hosts") - '()) + '()) #$(format #f "--port=~a" port) #$@(if local-service? '("--local-service") - '()) + '()) #$@(map (cut format #f "--listen-address=~a" <>) listen-addresses) #$(format #f "--resolv-file=~a" resolv-file) #$@(if no-resolv? '("--no-resolv") - '()) + '()) #$@(if forward-private-reverse-lookup? '() - '("--bogus-priv")) + '("--bogus-priv")) #$@(if query-servers-in-order? '("--strict-order") - '()) + '()) #$@(if servers-file (list #~(string-append "--servers-file=" #$servers-file)) '()) @@ -839,22 +839,22 @@ cache.size = 100 * MB #$(format #f "--cache-size=~a" cache-size) #$@(if negative-cache? '() - '("--no-negcache")) + '("--no-negcache")) #$@(if cpe-id (list (format #f "--add-cpe-id=~a" cpe-id)) '()) #$@(if tftp-enable? '("--enable-tftp") - '()) + '()) #$@(if tftp-no-fail? '("--tftp-no-fail") - '()) + '()) #$@(if tftp-single-port? '("--tftp-single-port") - '()) + '()) #$@(if tftp-secure? '("--tftp-secure") - '()) + '()) #$@(if tftp-max (list (format #f "--tftp-max=~a" tftp-max)) '()) @@ -863,10 +863,10 @@ cache.size = 100 * MB '()) #$@(if tftp-no-blocksize? '("--tftp-no-blocksize") - '()) + '()) #$@(if tftp-lowercase? '("--tftp-lowercase") - '()) + '()) #$@(if tftp-port-range (list (format #f "--tftp-port-range=~a" tftp-port-range)) |