nixpkgs/upstart-jobs/gw6c.nix
Michael Raskin bb25a6ef96 Added short keep-alive period to gw6c, added ircd-hybrid service.
svn path=/nixos/trunk/; revision=9071
2007-08-08 20:42:25 +00:00

28 lines
560 B
Nix

{config, pkgs}:
let
getCfg = option: config.get ["services" "gw6c" option];
procps = pkgs.procps;
gw6cService = import ../services/gw6c {
inherit (pkgs) stdenv gw6c coreutils
procps upstart iputils gnused
gnugrep;
username = getCfg "username";
password = getCfg "password";
server = getCfg "server";
keepAlive = getCfg "keepAlive";
};
in
{
name = "gw6c";
users = [];
groups = [];
job = "
description \"Gateway6 client\"
start on network-interfaces/started
stop on network-interfaces/stop
respawn ${gw6cService}/bin/control start
";
}