0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

* Sync with the trunk.

svn path=/nixos/branches/upstart-0.6/; revision=18408
This commit is contained in:
Eelco Dolstra 2009-11-18 11:50:06 +00:00
commit aa9d0a067e
12 changed files with 807 additions and 15 deletions

View file

@ -0,0 +1,51 @@
# 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 = "networking/started";
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;
stopOn = "shutdown";
exec = "${pkgs.monit}/bin/monit -I -c /etc/monit.conf";
respawn = true;
};
};
}