diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-08-13 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2024-09-01 02:00:00 +0200 |
commit | 36635e6789d590c11e8669946bed3665644b52a8 (patch) | |
tree | 214b161d5ac68c30313fa3612233b155aedfda38 | |
parent | 7af17447480a6024871d0709b66bc5cc53255657 (diff) |
services: dnsmasq: Fix some indentation.
Let's make the next conflict resolution less painful.
* gnu/packages/dns.scm (dnsmasq-shepherd-service):
C-M-q MAKE-FORKEXEC-CONSTRUCTOR.
-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)) |