monitoring.monit: get closer to upstream service definition
taken from
e02247e048/system/startup/monit.service.in
?at=master
This commit is contained in:
parent
fbf0abf4af
commit
23ca90b013
|
@ -36,11 +36,16 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
systemd.services.monit = {
|
systemd.services.monit = {
|
||||||
description = "Monit system watcher";
|
description = "Pro-active monitoring utility for unix systems";
|
||||||
after = [ "network-interfaces.target" ];
|
after = [ "network.target" ];
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
script = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";
|
serviceConfig = {
|
||||||
serviceConfig.Restart = "always";
|
ExecStart = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";
|
||||||
|
ExecStop = "${pkgs.monit}/bin/monit -c /etc/monit.conf quit";
|
||||||
|
ExecReload = "${pkgs.monit}/bin/monit -c /etc/monit.conf reload";
|
||||||
|
KillMode = "process";
|
||||||
|
Restart = "always";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue