Subversion Repositories configs

Rev

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-down.local instead
4
 
5
PATH=/sbin:/usr/sbin:/bin:/usr/bin
6
export PATH
7
 
8
LOGDEVICE=$6
9
REALDEVICE=$1
10
 
11
/etc/ppp/ip-down.ipv6to4 ${LOGDEVICE}
12
 
13
[ -x /etc/ppp/ip-down.local ] && /etc/ppp/ip-down.local "$@"
14
 
15
/etc/sysconfig/network-scripts/ifdown-post --realdevice ${REALDEVICE} \
16
    ifcfg-${LOGDEVICE}
17
 
18
exit 0