aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnetcfg2
-rwxr-xr-xnetwork2
2 files changed, 2 insertions, 2 deletions
diff --git a/netcfg b/netcfg
index 25451c6..6582d3d 100755
--- a/netcfg
+++ b/netcfg
@@ -52,7 +52,7 @@ stop_profile()
[ "$USEWPA" = "yes" -o "$USEWPA" = "YES" ] && wpa_cli terminate >/dev/null 2>&1
# bring down dhcpcd if we're using it
- [ "$IFOPTS" = "dhcp" -o "$IFOPTS" = "DHCP" ] && dhcpcd -k
+ [ "$IFOPTS" = "dhcp" -o "$IFOPTS" = "DHCP" ] && dhcpcd -k $INTERFACE
# bring down the interface itself
ifconfig $INTERFACE down
diff --git a/network b/network
index f66303c..b3d13b9 100755
--- a/network
+++ b/network
@@ -58,7 +58,7 @@ ifdown()
eval ifcfg="\$${1}"
if [ "$ifcfg" = "dhcp" ]; then
if [ -f /etc/dhcpc/dhcpcd-${1}.pid ]; then
- /sbin/dhcpcd -k
+ /sbin/dhcpcd -k ${1}
else
# No .pid file, just bring the interface itself down
/sbin/ifconfig ${1} down