aboutsummaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2004-07-18 21:28:41 +0000
committerJudd Vinet <judd@archlinux.org>2004-07-18 21:28:41 +0000
commitef0a365fc88fd1b02883dd42e0afb0929fbfa3f4 (patch)
treeb743dbb9dadc7b7f5d89ee7a0e7e524bfbeee242 /network
parent5ef7c1839eed06599d615380dae4447fe43dfb34 (diff)
downloadinitscripts-ef0a365fc88fd1b02883dd42e0afb0929fbfa3f4.tar.xz
fixed the sysfs problem with 2.4
Diffstat (limited to 'network')
-rwxr-xr-xnetwork9
1 files changed, 7 insertions, 2 deletions
diff --git a/network b/network
index 9c30aa3..4cb589a 100755
--- a/network
+++ b/network
@@ -29,8 +29,13 @@ ifdown()
fi
varname="\$${1}"
eval new_ifline=$varname
- if [ "$new_ifline" = "dhcp" -a -f /etc/dhcpc/dhcpcd-${1}.pid ]; then
- /bin/kill `cat /etc/dhcpc/dhcpcd-${1}.pid`
+ if [ "$new_ifline" = "dhcp" ]; then
+ if [ -f /etc/dhcpc/dhcpcd-${1}.pid ]; then
+ /bin/kill `cat /etc/dhcpc/dhcpcd-${1}.pid`
+ else
+ # No .pid file, just bring the interface itself down
+ /sbin/ifconfig $1 down
+ fi
else
/sbin/ifconfig $new_ifline down
fi