diff options
Diffstat (limited to 'network/unbound/rc.unbound')
-rw-r--r-- | network/unbound/rc.unbound | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/network/unbound/rc.unbound b/network/unbound/rc.unbound index 3c31faf4efc41..96e9b9db253c7 100644 --- a/network/unbound/rc.unbound +++ b/network/unbound/rc.unbound @@ -106,7 +106,7 @@ stop() { return fi echo "Stopping Unbound..." - kill `cat $PIDFILE` + kill $(cat $PIDFILE) rm -f $PIDFILE } @@ -116,7 +116,7 @@ reload() { return fi echo "Sending SIGHUP to Unbound..." - kill -HUP `cat $PIDFILE` + kill -HUP $(cat $PIDFILE) } case "$1" in |