26 lines
509 B
Nix
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
|
||
|
";
|
||
|
}
|