diff options
author | Andrea Scarpino <bash.lnx@gmail.com> | 2011-03-16 19:03:56 +0100 |
---|---|---|
committer | Andrea Scarpino <bash.lnx@gmail.com> | 2011-03-16 19:03:56 +0100 |
commit | c8b162e3ce45e0b8c6ad1c95e243fca7b1f0ce7d (patch) | |
tree | efe24e218f08afecdd2da1936fcf93ecda23b88b /src/connections/ethernet | |
parent | a9d39a075bed12243e6571f475ddf1c2ee0b078b (diff) | |
download | netctl-c8b162e3ce45e0b8c6ad1c95e243fca7b1f0ce7d.tar.gz netctl-c8b162e3ce45e0b8c6ad1c95e243fca7b1f0ce7d.tar.xz |
replace dhcpcd -x with dhcpcd -k (FS#23293)
Diffstat (limited to 'src/connections/ethernet')
-rw-r--r-- | src/connections/ethernet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connections/ethernet b/src/connections/ethernet index 04aca4a..a268698 100644 --- a/src/connections/ethernet +++ b/src/connections/ethernet @@ -141,7 +141,7 @@ ethernet_down() { if [[ "$IP" == "dhcp" ]]; then if [[ -f "/var/run/dhcpcd-${INTERFACE}.pid" ]]; then report_debug ethernet_down dhcpcd -qx "$INTERFACE" - dhcpcd -qx "$INTERFACE" &>/dev/null + dhcpcd -qk "$INTERFACE" &>/dev/null fi fi |