gogoclient: ipv6 tunnel module

meant to replace the obsolete gw6c module
builds fine on stdenv-updates branch

svn path=/nixos/trunk/; revision=32767
This commit is contained in:
Mathijs Kwik 2012-03-04 12:58:22 +00:00
parent 86bf5566fe
commit 3c957bd921
2 changed files with 89 additions and 0 deletions

View file

@ -121,6 +121,7 @@
./services/networking/flashpolicyd.nix
./services/networking/git-daemon.nix
./services/networking/gnunet.nix
./services/networking/gogoclient.nix
./services/networking/gvpe.nix
./services/networking/gw6c/default.nix
./services/networking/ifplugd.nix

View file

@ -0,0 +1,88 @@
{pkgs, config, ...}:
with pkgs.lib;
let cfg = config.services.gogoclient;
in
{
###### interface
options = {
services.gogoclient = {
enable = mkOption {
default = false;
type = types.bool;
description = ''
Enable the gogoclient ipv6 tunnel.
'';
};
autorun = mkOption {
default = true;
description = "
Switch to false to create upstart-job and configuration,
but not run it automatically
";
};
username = mkOption {
default = "";
description = "
Your Gateway6 login name, if any.
";
};
password = mkOption {
default = "";
type = types.string;
description = "
Path to a file (as a string), containing your gogonet password, if any.
";
};
server = mkOption {
default = "anonymous.freenet6.net";
example = "broker.freenet6.net";
description = "
Used Gateway6 server.
";
};
};
};
###### implementation
config = mkIf cfg.enable {
boot.kernelModules = [ "tun" ];
# environment.systemPackages = [pkgs.gogoclient];
networking = {
enableIPv6 = true;
interfaceJobs = optional cfg.autorun config.jobs.gogoclient;
};
jobs.gogoclient = {
name = "gogoclient";
description = "ipv6 tunnel";
startOn = if cfg.autorun then "started network-interfaces" else "";
stopOn = "stopping network-interfaces";
script = "cd /var/lib/gogoc; exec gogoc -y -f /etc/gogoc.conf";
path = [pkgs.gogoclient];
};
system.activationScripts.gogoClientConf = ''
mkdir -p /var/lib/gogoc
chmod 700 /var/lib/gogoc
install -m400 ${pkgs.gogoclient}/share/${pkgs.gogoclient.name}/gogoc.conf.sample /etc/gogoc.conf.default
${pkgs.gnused}/bin/sed -i -e "s|^userid=|&${cfg.username}|" /etc/gogoc.conf.default
${pkgs.gnused}/bin/sed -i -e "s|^passwd=|&${if cfg.password == "" then "" else "$(cat ${cfg.password})"}|" /etc/gogoc.conf.default
${pkgs.gnused}/bin/sed -i -e "s|^server=.*|server=${cfg.server}|" /etc/gogoc.conf.default
${pkgs.gnused}/bin/sed -i -e "s|^auth_method=.*|auth_method=${if cfg.password == "" then "anonymous" else "any"}|" /etc/gogoc.conf.default
${pkgs.gnused}/bin/sed -i -e "s|^#log_file=|log_file=1|" /etc/gogoc.conf.default
mv /etc/gogoc.conf.default /etc/gogoc.conf
'';
};
}