nixpkgs/upstart-jobs/gw6c.nix
Michael Raskin bf1033d2cb Added Gateway6 upstart-job and options for it. Sudo configuration for PAM
is added (it is needed anyway), but still only NOPASSWD entries work.

svn path=/nixos/trunk/; revision=8966
2007-07-09 11:21:04 +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
";
}