mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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.
This commit is contained in:
parent
1f1cf91eab
commit
91911b9382
1 changed files with 5 additions and 5 deletions
|
@ -148,11 +148,6 @@ (define (cuirass-shepherd-service config)
|
||||||
#$@(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 @@ (define (cuirass-shepherd-service config)
|
||||||
"--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
|
||||||
|
|
Loading…
Reference in a new issue