diff options
author | Andreas Enge <andreas@enge.fr> | 2013-03-03 14:10:57 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-03-03 14:12:57 +0100 |
commit | 49f24f41e33d8ee1c6d8e5a92d388c3aebc3b81a (patch) | |
tree | 89e846a0349bbcdc63d6fd2c3381abee5869dfa6 /gnu/packages/patches | |
parent | d688a2f0fd2ab32f476917798e59e9ce9beef868 (diff) | |
download | guix-49f24f41e33d8ee1c6d8e5a92d388c3aebc3b81a.tar guix-49f24f41e33d8ee1c6d8e5a92d388c3aebc3b81a.tar.gz |
gnu: Add vpnc.
* gnu/packages/vpn.scm: New file.
* Makefile.am (MODULES): Add it.
* gnu/packages/patches/vpnc-script.patch: New file.
* Makefile.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/vpnc-script.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/patches/vpnc-script.patch b/gnu/packages/patches/vpnc-script.patch new file mode 100644 index 0000000000..a0d9481952 --- /dev/null +++ b/gnu/packages/patches/vpnc-script.patch @@ -0,0 +1,15 @@ +This patch adapts the vpnc script to newer kernel versions, see + https://lkml.org/lkml/2011/3/24/645 + +diff -u a/vpnc-script.in b/vpnc-script.in +--- a/vpnc-script.in 2013-03-03 13:55:16.000000000 +0100 ++++ b/vpnc-script.in 2013-03-03 13:56:11.000000000 +0100 +@@ -116,7 +116,7 @@ + + if [ -n "$IPROUTE" ]; then + fix_ip_get_output () { +- sed 's/cache//;s/metric \?[0-9]\+ [0-9]\+//g;s/hoplimit [0-9]\+//g' ++ sed 's/cache//;s/metric \?[0-9]\+ [0-9]\+//g;s/hoplimit [0-9]\+//g;s/ipid 0x....//g' + } + + set_vpngateway_route() { |