blob: 079d1ff519fe9a78c6087061b913f078e4189429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/sh
PATH=/sbin:/usr/sbin:/bin:/usr/bin
cd /etc/sysconfig/network-scripts
if [ $UID != 0 ]; then
if [ -x /usr/sbin/usernetctl ]; then
exec /usr/sbin/usernetctl $1 down
fi
echo "Users cannot control this device." >&2
exit 1
fi
. $1
DEVICETYPE=`echo $DEVICE | sed "s/[0-9]*$//"`
OTHERSCRIPT="/etc/sysconfig/network-scripts/ifdown-${DEVICETYPE}"
if [ -x $OTHERSCRIPT ]; then
$OTHERSCRIPT $1 $2
exit $?
fi
if echo $DEVICE | grep -q ':' ; then
ISALIAS=yes
else
ISALIAS=no
fi
if [ "$BOOTPROTO" = dhcp -a "$ISALIAS" = no ]; then
if [ -f /var/run/dhcpcd-${DEVICE}.pid ]; then
kill `cat /var/run/dhcpcd-${DEVICE}.pid`
rm -f /var/run/dhcpcd-${DEVICE}.pid
exit 0
fi
exit 1
fi
ifconfig ${DEVICE} down
exec /etc/sysconfig/network-scripts/ifdown-post $1
|