diff options
Diffstat (limited to 'ppp/ip-up')
-rw-r--r-- | ppp/ip-up | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ppp/ip-up b/ppp/ip-up deleted file mode 100644 index e610674d..00000000 --- a/ppp/ip-up +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -# This file should not be modified -- make local changes to -# /etc/ppp/ip-up.local instead - -PATH=/sbin:/usr/sbin:/bin:/usr/bin -export PATH - -LOGDEVICE=$6 -REALDEVICE=$1 - -[ -f /etc/sysconfig/network-scripts/ifcfg-${LOGDEVICE} ] && /etc/sysconfig/network-scripts/ifup-post --realdevice ${REALDEVICE} ifcfg-${LOGDEVICE} - -/etc/ppp/ip-up.ipv6to4 ${LOGDEVICE} - -[ -x /etc/ppp/ip-up.local ] && /etc/ppp/ip-up.local "$@" - -exit 0 |