summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryuina822 <[email protected]>2015-09-14 15:11:12 +0900
committerBrian Behlendorf <[email protected]>2015-09-22 16:04:44 -0700
commit4a4809faab83be1bc723086ad44816bacf646ae3 (patch)
tree91745328a40bbd24ba3a568c39602d2421ba9667
parente2ede4721bc224052f30fcff7a244276b5e01c6f (diff)
Fixed --signal typo
Signed-off-by: Richard Yao <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Issue #3773
-rw-r--r--etc/init.d/zfs-functions.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/init.d/zfs-functions.in b/etc/init.d/zfs-functions.in
index 1bdb01dda..95b0a2997 100644
--- a/etc/init.d/zfs-functions.in
+++ b/etc/init.d/zfs-functions.in
@@ -227,7 +227,7 @@ zfs_daemon_reload()
if type start-stop-daemon > /dev/null 2>&1 ; then
# LSB functions
- start-stop-daemon --stop -signal 1 --quiet \
+ start-stop-daemon --stop --signal 1 --quiet \
--pidfile "$PIDFILE" --name "$DAEMON_NAME"
return $?
elif type killproc > /dev/null 2>&1 ; then