diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-02-09 09:20:00 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-02-09 09:20:55 +0100 |
commit | 91911b938208fff582e193f7a2b05584de9f2159 (patch) | |
tree | 575be01698560b5350a4706816242f3af33ae036 | |
parent | 1f1cf91eab2e64433a270242f153bf5e2f7b8398 (diff) |
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.
-rw-r--r-- | gnu/services/cuirass.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/services/cuirass.scm b/gnu/services/cuirass.scm index d291d494fc..1cebbfcb6e 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 |