Merge pull request #244650 from Stzx/fix-netdata
netdata: Fix package ref
This commit is contained in:
commit
e4f119b781
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ in {
|
|||
ExecStart = "${cfg.package}/bin/netdata -P /run/netdata/netdata.pid -D -c /etc/netdata/netdata.conf";
|
||||
ExecReload = "${pkgs.util-linux}/bin/kill -s HUP -s USR1 -s USR2 $MAINPID";
|
||||
ExecStartPost = pkgs.writeShellScript "wait-for-netdata-up" ''
|
||||
while [ "$(${pkgs.netdata}/bin/netdatacli ping)" != pong ]; do sleep 0.5; done
|
||||
while [ "$(${cfg.package}/bin/netdatacli ping)" != pong ]; do sleep 0.5; done
|
||||
'';
|
||||
|
||||
TimeoutStopSec = cfg.deadlineBeforeStopSec;
|
||||
|
|
Loading…
Reference in a new issue