guix-commits
[Top][All Lists]
Advanced

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

branch master updated: services: cuirass: Move zabbix argument to the we


From: guix-commits
Subject: branch master updated: services: cuirass: Move zabbix argument to the web process.
Date: Tue, 09 Feb 2021 03:21:06 -0500

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

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 91911b9  services: cuirass: Move zabbix argument to the web process.
91911b9 is described below

commit 91911b938208fff582e193f7a2b05584de9f2159
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Tue Feb 9 09:20:00 2021 +0100

    services: cuirass: Move zabbix argument to the web process.
    
    This is a follow-up of 703e5c92eeb38d86455c2b1cace5cad9fc08b349.
    
    * gnu/services/cuirass.scm (cuirass-shepherd-service): Move "zabbix-uri"
    argument to the web process.
---
 gnu/services/cuirass.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/services/cuirass.scm b/gnu/services/cuirass.scm
index d291d49..1cebbfc 100644
--- a/gnu/services/cuirass.scm
+++ b/gnu/services/cuirass.scm
@@ -148,11 +148,6 @@
                         #$@(if use-substitutes? '("--use-substitutes") '())
                         #$@(if one-shot? '("--one-shot") '())
                         #$@(if fallback? '("--fallback") '())
-                        #$@(if zabbix-uri
-                               (list (string-append
-                                      "--zabbix-uri="
-                                      zabbix-uri))
-                               '())
                         #$@extra-options)
 
                   #:environment-variables
@@ -178,6 +173,11 @@
                         "--interval" #$(number->string interval)
                         #$@(if use-substitutes? '("--use-substitutes") '())
                         #$@(if fallback? '("--fallback") '())
+                        #$@(if zabbix-uri
+                               (list (string-append
+                                      "--zabbix-uri="
+                                      zabbix-uri))
+                               '())
                         #$@extra-options)
 
                   #:user #$user



reply via email to

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