aboutsummaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-03-04 22:51:54 -0500
committerDave Reisner <dreisner@archlinux.org>2012-03-05 12:33:10 -0500
commitea3f8c5761d7f1cdf693746bc3322d9482b349ce (patch)
tree1618549a6ad537e6e446b84d7d8ba6b042736ef4 /network
parentd033692df18c1ba6385b20871e8fe5fa5a1e3514 (diff)
downloadinitscripts-ea3f8c5761d7f1cdf693746bc3322d9482b349ce.tar.xz
network: pass -q to dhcpcd on shutdown
Avoid unnecessary output about sending a SIGTERM to the active PID. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'network')
-rwxr-xr-xnetwork2
1 files changed, 1 insertions, 1 deletions
diff --git a/network b/network
index faaac78..2439dba 100755
--- a/network
+++ b/network
@@ -52,7 +52,7 @@ network_down() {
have_interface "$interface" || return 1
if [[ -f /run/dhcpcd-$interface.pid ]]; then
- dhcpcd -k $interface || return 1
+ dhcpcd -qk $interface || return 1
else
ip addr flush dev $interface || return 1
fi