summaryrefslogtreecommitdiff
path: root/ipmasq/rules/A01interfaces_ipsec.def
diff options
context:
space:
mode:
Diffstat (limited to 'ipmasq/rules/A01interfaces_ipsec.def')
-rw-r--r--ipmasq/rules/A01interfaces_ipsec.def23
1 files changed, 0 insertions, 23 deletions
diff --git a/ipmasq/rules/A01interfaces_ipsec.def b/ipmasq/rules/A01interfaces_ipsec.def
deleted file mode 100644
index 484fb9e..0000000
--- a/ipmasq/rules/A01interfaces_ipsec.def
+++ /dev/null
@@ -1,23 +0,0 @@
-# You should not edit this file. Instead, create a file with the same
-# name as this one, but with a .rul extension instead of .def. The
-# .rul file will override this one.
-#
-# However, any changes you make to this file will be preserved.
-
-# find IPsec interface names, and separate them from INTERNAL
-IPSEC=$(enumerate-if | sort -u | grep ipsec)
-if [ -n "$IPSEC" ]; then
- for i in $IPSEC; do
- INTERNAL=$(echo $INTERNAL | sed -e "s/\( *\|^\)$i\( *\|$\)/\1/")
- done
-fi
-
-# remove interfaces that don't have networks attached to them
-if [ -n "$IPSEC" ]; then
- for i in $IPSEC; do
- nm=$(nmofif $i)
- if [ -z "${nm}" ]; then
- IPSEC=$(echo $IPSEC | sed -e "s/\( *\|^\)$i\( *\|$\)/\1/")
- fi
- done
-fi