diff options
author | Christopher Baines <mail@cbaines.net> | 2017-07-26 12:24:51 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2017-08-09 23:50:35 +0100 |
commit | 101205662588f033c944034f91e7d3cda06d6e56 (patch) | |
tree | b80ec6491cfdae5ea3c2b20bd6bd8ad7fe4c23d4 /gnu/services | |
parent | 91fdc8a574cccecd55d042bc1f76ab7f7d3adced (diff) | |
download | guix-101205662588f033c944034f91e7d3cda06d6e56.tar guix-101205662588f033c944034f91e7d3cda06d6e56.tar.gz |
services: admin: Simplify the handling of the Tailon debug? option.
* gnu/services/admin.scm (tailon-configuration-file-compiler): Simplify the
handling of debug?.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/admin.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/admin.scm b/gnu/services/admin.scm index e24aebae2c..14452a86c7 100644 --- a/gnu/services/admin.scm +++ b/gnu/services/admin.scm @@ -276,7 +276,7 @@ for ROTATION." ("commands" . ,(string-append "[" (string-join allowed-commands ", ") "]")) - ,@(if debug? '(("debug" . "true")) '()) + ("debug" . ,(if debug? "true" #f)) ("wrap-lines" . ,(if wrap-lines "true" "false")) ("http-auth" . ,http-auth) ("users" . ,(if users |