nixpkgs/upstart-jobs/gw6c.nix
Michael Raskin 8843f3c287 Corrected dependencies for gw6c; also made httpd depend on gw6c if needed.
svn path=/nixos/trunk/; revision=9029
2007-08-02 21:26:38 +00:00

26 lines
509 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 nettools;
username = getCfg "username";
password = getCfg "password";
server = getCfg "server";
};
in
{
name = "gw6c";
users = [];
groups = [];
job = "
description \"Gateway6 client\"
start on network-interfaces/started
stop on network-interfaces/stop
respawn ${gw6cService}/bin/control start
";
}