e3ff43f812
Related: #1088220
18 lines
430 B
Bash
18 lines
430 B
Bash
#!/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
|