Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
192 |
- |
1 |
#!/bin/bash
|
|
|
2 |
# This file should not be modified -- make local changes to
|
|
|
3 |
# /etc/ppp/ip-up.local instead
|
|
|
4 |
|
|
|
5 |
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
|
|
6 |
export PATH
|
|
|
7 |
|
|
|
8 |
LOGDEVICE=$6
|
|
|
9 |
REALDEVICE=$1
|
|
|
10 |
|
|
|
11 |
[ -f /etc/sysconfig/network-scripts/ifcfg-${LOGDEVICE} ] && /etc/sysconfig/network-scripts/ifup-post --realdevice ${REALDEVICE} ifcfg-${LOGDEVICE}
|
|
|
12 |
|
|
|
13 |
/etc/ppp/ip-up.ipv6to4 ${LOGDEVICE}
|
|
|
14 |
|
|
|
15 |
[ -x /etc/ppp/ip-up.local ] && /etc/ppp/ip-up.local "$@"
|
|
|
16 |
|
|
|
17 |
exit 0
|