diff options
author | Miloslav Trmac <mitr@volny.cz> | 2006-03-20 01:04:01 +0000 |
---|---|---|
committer | Miloslav Trmac <mitr@volny.cz> | 2006-03-20 01:04:01 +0000 |
commit | 658784e3955a7631f10b502f3a828ac12b5073c6 (patch) | |
tree | 7e042511686a5649941d9a3774d4f7e058b6f1f5 /sysconfig/network-scripts | |
parent | 134f60e9dfb3e6b4bcd18f7ab866e50808dc25fd (diff) | |
download | initscripts-658784e3955a7631f10b502f3a828ac12b5073c6.tar initscripts-658784e3955a7631f10b502f3a828ac12b5073c6.tar.gz initscripts-658784e3955a7631f10b502f3a828ac12b5073c6.tar.bz2 initscripts-658784e3955a7631f10b502f3a828ac12b5073c6.tar.xz initscripts-658784e3955a7631f10b502f3a828ac12b5073c6.zip |
Provide the underlying device name to ip-up (and thus ifup-routes) for PPP
devices (#92023)
Diffstat (limited to 'sysconfig/network-scripts')
-rwxr-xr-x | sysconfig/network-scripts/ifup-post | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post index cf07130b..54bc27f9 100755 --- a/sysconfig/network-scripts/ifup-post +++ b/sysconfig/network-scripts/ifup-post @@ -5,14 +5,22 @@ cd /etc/sysconfig/network-scripts [ -f ../network ] && . ../network +unset REALDEVICE +if [ "$1" = --realdevice ] ; then + REALDEVICE=$2 + shift 2 +fi + CONFIG=$1 source_config +[ -z "$REALDEVICE" ] && REALDEVICE=$DEVICE + if [ "$ISALIAS" = no ] ; then /etc/sysconfig/network-scripts/ifup-aliases ${DEVICE} ${CONFIG} fi -/etc/sysconfig/network-scripts/ifup-routes ${DEVICE} ${DEVNAME} +/etc/sysconfig/network-scripts/ifup-routes ${REALDEVICE} ${DEVNAME} if [ "$PEERDNS" != "no" -o -n "$RESOLV_MODS" -a "$RESOLV_MODS" != "no" ]; then |