aboutsummaryrefslogtreecommitdiffstats
path: root/ppp
diff options
context:
space:
mode:
Diffstat (limited to 'ppp')
-rw-r--r--ppp/ip-down13
-rw-r--r--ppp/ip-up14
2 files changed, 27 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
diff --git a/ppp/ip-up b/ppp/ip-up
new file mode 100644
index 00000000..76e9e76f
--- /dev/null
+++ b/ppp/ip-up
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+# This file should not be modified -- make local changes to
+# /etc/ppp/ip-up.local instead
+
+LOGDEVICE=$6
+REALDEVICE=$1
+
+echo "$REALDEVICE" > /var/run/ppp-$LOGDEVICE.dev
+[ -x /etc/ppp/ip-up.local ] && /etc/ppp/ip-up.local $*
+
+/etc/sysconfig/network-scripts/ifup-post ifcfg-${LOGDEVICE}
+
+exit 0