guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: services/web: Add missing ungexp for mumi shepher


From: guix-commits
Subject: branch master updated: services/web: Add missing ungexp for mumi shepherd services.
Date: Mon, 06 Apr 2020 03:45:02 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0e8564f  services/web: Add missing ungexp for mumi shepherd services.
0e8564f is described below

commit 0e8564f8f0f51535b9fd7893082d12eef769a7fc
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Mon Apr 6 09:44:04 2020 +0200

    services/web: Add missing ungexp for mumi shepherd services.
    
    This is a follow-up to commit f00f52a1fb5ac08f8059dffcd60d36adcda06603.
    
    * gnu/services/web.scm (mumi-shepherd-services): Ungexp variables.
---
 gnu/services/web.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/services/web.scm b/gnu/services/web.scm
index 2b482fc..9ae84dd 100644
--- a/gnu/services/web.scm
+++ b/gnu/services/web.scm
@@ -1727,7 +1727,7 @@ WSGIPassAuthorization On
             (requirement '(networking))
             (start #~(make-forkexec-constructor
                       `(#$(file-append mumi "/bin/mumi") "web"
-                        ,@(if mailer? '() '("--disable-mailer")))
+                        ,@(if #$mailer? '() '("--disable-mailer")))
                       #:user "mumi" #:group "mumi"
                       #:log-file "/var/log/mumi.log"))
             (stop #~(make-kill-destructor)))
@@ -1746,11 +1746,11 @@ WSGIPassAuthorization On
             (requirement '(networking))
             (start #~(make-forkexec-constructor
                       `(#$(file-append mumi "/bin/mumi") "mailer"
-                        ,@(if sender
-                              (list (string-append "--sender=" sender))
+                        ,@(if #$sender
+                              (list (string-append "--sender=" #$sender))
                               '())
-                        ,@(if smtp
-                              (list (string-append "--smtp=" smtp))
+                        ,@(if #$smtp
+                              (list (string-append "--smtp=" #$smtp))
                               '()))
                       #:user "mumi" #:group "mumi"
                       #:log-file "/var/log/mumi.mailer.log"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]