aboutsummaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
Diffstat (limited to 'network')
-rwxr-xr-xnetwork6
1 files changed, 3 insertions, 3 deletions
diff --git a/network b/network
index a25d7d8..cde25dd 100755
--- a/network
+++ b/network
@@ -41,7 +41,7 @@ ifup()
eval ifcfg="\$${1}"
if [ "$ifcfg" = "dhcp" ]; then
# remove the .pid file if it exists
- rm -f /etc/dhcpc/dhcpcd-${1}.{pid,cache} >/dev/null 2>&1
+ rm -f /var/run/dhcpcd-${1}.{pid,cache} >/dev/null 2>&1
/sbin/dhcpcd $DHCPCD_ARGS ${1}
else
/sbin/ifconfig $ifcfg
@@ -57,8 +57,8 @@ ifdown()
fi
eval ifcfg="\$${1}"
if [ "$ifcfg" = "dhcp" ]; then
- if [ -f /etc/dhcpc/dhcpcd-${1}.pid ]; then
- kill `cat /etc/dhcpc/dhcpcd-${1}.pid`
+ if [ -f /var/run/dhcpcd-${1}.pid ]; then
+ kill `cat /var/run/dhcpcd-${1}.pid`
else
# No .pid file, just bring the interface itself down
/sbin/ifconfig ${1} down