diff options
Diffstat (limited to 'sysconfig/network-scripts/ifdown')
-rwxr-xr-x | sysconfig/network-scripts/ifdown | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sysconfig/network-scripts/ifdown b/sysconfig/network-scripts/ifdown index 94fe5593..6f02c394 100755 --- a/sysconfig/network-scripts/ifdown +++ b/sysconfig/network-scripts/ifdown @@ -41,13 +41,8 @@ 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 +if [ "$BOOTPROTO" = bootp -o "$BOOTPROTO" = dhcp ]; then + pump -r -i ${DEVICE} fi ifconfig ${DEVICE} down |