nixpkgs/upstart-jobs/zabbix-agent.nix
Eelco Dolstra 96a8dbfd58 * Upstart jobs for the Zabbix agent and server daemons.
svn path=/nixos/trunk/; revision=11998
2008-06-06 09:13:16 +00:00

61 lines
1.1 KiB
Nix

{config, pkgs}:
let
stateDir = "/var/run/zabbix";
logDir = "/var/log/zabbix";
pidFile = "${stateDir}/zabbix_agentd.pid";
configFile = pkgs.writeText "zabbix_agentd.conf" ''
Server = 127.0.0.1
LogFile = ${logDir}/zabbix_agentd
DebugLevel = 4
PidFile = ${pidFile}
StartAgents = 1
'';
in
{
name = "zabbix-agent";
users = [
{ name = "zabbix";
uid = (import ../system/ids.nix).uids.zabbix;
description = "Zabbix daemon user";
}
];
job = ''
description "Zabbix agent daemon"
start script
mkdir -m 0755 -p ${stateDir} ${logDir}
chown zabbix ${stateDir} ${logDir}
export PATH=${pkgs.nettools}/bin:$PATH
${pkgs.zabbixAgent}/sbin/zabbix_agentd --config ${configFile}
end script
respawn sleep 100000
stop script
# !!! this seems to leave processes behind.
#pid=$(cat ${pidFile})
#if test -n "$pid"; then
# kill $pid
#fi
# So instead kill the agent in a brutal fashion.
while ${pkgs.procps}/bin/pkill -u zabbix zabbix_agentd; do true; done
end script
'';
}