diff options
author | makefu <github@syntax-fehler.de> | 2016-07-18 18:57:36 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-07-18 18:57:36 +0200 |
commit | 835ddb0de049850c113de4f9870edb49fff05494 (patch) | |
tree | 724b50846128f40f8810511aa109f7fb33f4cf66 /krebs | |
parent | a6a0cddeaabe2e30e314cdb3d7106180660c43cf (diff) |
m 1 vbob: document forticlientsslvpn mess
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/5pkgs/fortclientsslvpn/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/krebs/5pkgs/fortclientsslvpn/default.nix b/krebs/5pkgs/fortclientsslvpn/default.nix index 11d567408..07420c4d3 100644 --- a/krebs/5pkgs/fortclientsslvpn/default.nix +++ b/krebs/5pkgs/fortclientsslvpn/default.nix @@ -5,9 +5,10 @@ stdenv.mkDerivation rec { # forticlient will be copied into /tmp before execution. this is necessary as # the software demands $base to be writeable + # TODO: chroot and create the following files instead of copying files manually # mkdir /etc/ppp ; touch /etc/ppp/options - ## i still have not found which tool uses tail ... i tried redirecting it in forticlientsslvpn and subproc # ln -s /run/current-system/sw/bin/tail /usr/bin/tail + # ln -s /run/current-system/sw/bin/pppd /usr/sbin/pppd src = fetchurl { # archive.org mirror: @@ -62,7 +63,7 @@ stdenv.mkDerivation rec { cp -r 64bit/. "$out/opt/fortinet" wrapProgram $out/opt/fortinet/forticlientsslvpn \ --set LD_PRELOAD "${libredirect}/lib/libredirect.so" \ - --set NIX_REDIRECTS /usr/sbin/ip=${iproute}/bin/ip:/usr/sbin/ppp=${ppp}/bin/ppp + --set NIX_REDIRECTS /usr/bin/tail=${coreutils}/bin/tail:/usr/sbin/ip=${iproute}/bin/ip:/usr/sbin/pppd=${ppp}/bin/pppd mkdir -p "$out/bin/" |