monitoring.monit: get closer to upstream service definition

taken from
e02247e048/system/startup/monit.service.in?at=master
This commit is contained in:
Alexander Ried 2016-09-12 16:31:18 +02:00
parent fbf0abf4af
commit 23ca90b013
1 changed files with 9 additions and 4 deletions

View File

@ -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";
};
}; };
}; };
} }