mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
# Monit system watcher
|
|
# http://mmonit.org/monit/
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
let inherit (pkgs.lib) mkOption mkIf;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.monit = {
|
|
enable = mkOption {
|
|
default = false;
|
|
description = ''
|
|
Whether to run Monit system watcher.
|
|
'';
|
|
};
|
|
config = mkOption {
|
|
default = "";
|
|
description = "monit.conf content";
|
|
};
|
|
startOn = mkOption {
|
|
default = "started network-interfaces";
|
|
description = "What Monit supposes to be already present";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf config.services.monit.enable {
|
|
|
|
environment.etc = [
|
|
{
|
|
source = pkgs.writeTextFile {
|
|
name = "monit.conf";
|
|
text = config.services.monit.config;
|
|
};
|
|
target = "monit.conf";
|
|
mode = "0400";
|
|
}
|
|
];
|
|
|
|
jobs.monit = {
|
|
description = "Monit system watcher";
|
|
|
|
startOn = config.services.monit.startOn;
|
|
|
|
exec = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";
|
|
|
|
respawn = true;
|
|
};
|
|
};
|
|
}
|