services: openntpd: Remove useless let.
* gnu/services/networking.scm (openntpd-shepherd-service): Remove useless let.
This commit is contained in:
parent
f92cf9d356
commit
afd39a76e2
|
@ -508,7 +508,7 @@ make an initial adjustment of more than 1,000 seconds."
|
|||
(match-record config <openntpd-configuration>
|
||||
(openntpd listen-on query-from sensor server servers constraint-from
|
||||
constraints-from allow-large-adjustment?)
|
||||
(let ()
|
||||
|
||||
(define config
|
||||
(string-join
|
||||
(filter-map
|
||||
|
@ -542,7 +542,7 @@ make an initial adjustment of more than 1,000 seconds."
|
|||
;; while running, leading shepherd to disable it. To
|
||||
;; prevent spamming stderr, redirect output to logfile.
|
||||
#:log-file "/var/log/ntpd"))
|
||||
(stop #~(make-kill-destructor)))))))
|
||||
(stop #~(make-kill-destructor))))))
|
||||
|
||||
(define (openntpd-service-activation config)
|
||||
"Return the activation gexp for CONFIG."
|
||||
|
|
Loading…
Reference in New Issue