services: cuirass: Move zabbix argument to the web process.
This is a follow-up of 703e5c92ee
.
* gnu/services/cuirass.scm (cuirass-shepherd-service): Move "zabbix-uri"
argument to the web process.
master
parent
1f1cf91eab
commit
91911b9382
|
@ -148,11 +148,6 @@
|
||||||
#$@(if use-substitutes? '("--use-substitutes") '())
|
#$@(if use-substitutes? '("--use-substitutes") '())
|
||||||
#$@(if one-shot? '("--one-shot") '())
|
#$@(if one-shot? '("--one-shot") '())
|
||||||
#$@(if fallback? '("--fallback") '())
|
#$@(if fallback? '("--fallback") '())
|
||||||
#$@(if zabbix-uri
|
|
||||||
(list (string-append
|
|
||||||
"--zabbix-uri="
|
|
||||||
zabbix-uri))
|
|
||||||
'())
|
|
||||||
#$@extra-options)
|
#$@extra-options)
|
||||||
|
|
||||||
#:environment-variables
|
#:environment-variables
|
||||||
|
@ -178,6 +173,11 @@
|
||||||
"--interval" #$(number->string interval)
|
"--interval" #$(number->string interval)
|
||||||
#$@(if use-substitutes? '("--use-substitutes") '())
|
#$@(if use-substitutes? '("--use-substitutes") '())
|
||||||
#$@(if fallback? '("--fallback") '())
|
#$@(if fallback? '("--fallback") '())
|
||||||
|
#$@(if zabbix-uri
|
||||||
|
(list (string-append
|
||||||
|
"--zabbix-uri="
|
||||||
|
zabbix-uri))
|
||||||
|
'())
|
||||||
#$@extra-options)
|
#$@extra-options)
|
||||||
|
|
||||||
#:user #$user
|
#:user #$user
|
||||||
|
|
Reference in New Issue