Skip to content
Snippets Groups Projects
Unverified Commit 0e8564f8 authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

services/web: Add missing ungexp for mumi shepherd services.

This is a follow-up to commit f00f52a1.

* gnu/services/web.scm (mumi-shepherd-services): Ungexp variables.
parent 6ef1fc8d
No related branches found
No related tags found
No related merge requests found
...@@ -1727,7 +1727,7 @@ (define (mumi-shepherd-services config) ...@@ -1727,7 +1727,7 @@ (define (mumi-shepherd-services config)
(requirement '(networking)) (requirement '(networking))
(start #~(make-forkexec-constructor (start #~(make-forkexec-constructor
`(#$(file-append mumi "/bin/mumi") "web" `(#$(file-append mumi "/bin/mumi") "web"
,@(if mailer? '() '("--disable-mailer"))) ,@(if #$mailer? '() '("--disable-mailer")))
#:user "mumi" #:group "mumi" #:user "mumi" #:group "mumi"
#:log-file "/var/log/mumi.log")) #:log-file "/var/log/mumi.log"))
(stop #~(make-kill-destructor))) (stop #~(make-kill-destructor)))
...@@ -1746,11 +1746,11 @@ (define (mumi-shepherd-services config) ...@@ -1746,11 +1746,11 @@ (define (mumi-shepherd-services config)
(requirement '(networking)) (requirement '(networking))
(start #~(make-forkexec-constructor (start #~(make-forkexec-constructor
`(#$(file-append mumi "/bin/mumi") "mailer" `(#$(file-append mumi "/bin/mumi") "mailer"
,@(if sender ,@(if #$sender
(list (string-append "--sender=" sender)) (list (string-append "--sender=" #$sender))
'()) '())
,@(if smtp ,@(if #$smtp
(list (string-append "--smtp=" smtp)) (list (string-append "--smtp=" #$smtp))
'())) '()))
#:user "mumi" #:group "mumi" #:user "mumi" #:group "mumi"
#:log-file "/var/log/mumi.mailer.log")) #:log-file "/var/log/mumi.mailer.log"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment