aboutsummaryrefslogtreecommitdiffstats
path: root/ppp/ip-down
diff options
context:
space:
mode:
Diffstat (limited to 'ppp/ip-down')
-rw-r--r--ppp/ip-down13
1 files changed, 13 insertions, 0 deletions
diff --git a/ppp/ip-down b/ppp/ip-down
new file mode 100644
index 00000000..13a1e267
--- /dev/null
+++ b/ppp/ip-down
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# This file should not be modified -- make local changes to
+# /etc/ppp/ip-down.local instead
+
+LOGDEVICE=$6
+REALDEVICE=$1
+
+[ -x /etc/ppp/ip-down.local ] && /etc/ppp/ip-down.local $*
+
+/etc/sysconfig/network-scripts/ifdown-post ifcfg-${LOGDEVICE}
+
+exit 0