2014-05-05 20:58:51 +02:00
|
|
|
{config, pkgs, lib, ...}:
|
2009-11-18 09:39:10 +01:00
|
|
|
|
2018-11-10 01:07:42 +01:00
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.monit;
|
2009-11-18 09:39:10 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2018-11-10 01:07:42 +01:00
|
|
|
options.services.monit = {
|
|
|
|
|
|
|
|
enable = mkEnableOption "Monit";
|
|
|
|
|
|
|
|
config = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = "monitrc content";
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
2018-11-10 01:07:42 +01:00
|
|
|
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2018-11-10 01:07:42 +01:00
|
|
|
config = mkIf cfg.enable {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2017-09-28 00:20:14 +02:00
|
|
|
environment.systemPackages = [ pkgs.monit ];
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
environment.etc.monitrc = {
|
2018-11-10 01:07:42 +01:00
|
|
|
text = cfg.config;
|
2018-03-28 23:45:57 +02:00
|
|
|
mode = "0400";
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2016-01-06 07:50:18 +01:00
|
|
|
systemd.services.monit = {
|
2016-09-12 16:31:18 +02:00
|
|
|
description = "Pro-active monitoring utility for unix systems";
|
|
|
|
after = [ "network.target" ];
|
2016-01-06 07:50:18 +01:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2016-09-12 16:31:18 +02:00
|
|
|
serviceConfig = {
|
2017-09-28 00:20:14 +02:00
|
|
|
ExecStart = "${pkgs.monit}/bin/monit -I -c /etc/monitrc";
|
|
|
|
ExecStop = "${pkgs.monit}/bin/monit -c /etc/monitrc quit";
|
|
|
|
ExecReload = "${pkgs.monit}/bin/monit -c /etc/monitrc reload";
|
2016-09-12 16:31:18 +02:00
|
|
|
KillMode = "process";
|
|
|
|
Restart = "always";
|
|
|
|
};
|
2019-08-13 23:52:01 +02:00
|
|
|
restartTriggers = [ config.environment.etc.monitrc.source ];
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
2018-03-28 23:45:57 +02:00
|
|
|
|
2009-11-18 09:39:10 +01:00
|
|
|
};
|
|
|
|
}
|