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 450e395794..f4c9f1223a 100644 --- a/network/unbound/rc.unbound +++ b/network/unbound/rc.unbound @@ -5,7 +5,7 @@ UNBOUND=/usr/sbin/unbound CONFIG=/etc/unbound/unbound.conf -PIDFILE=/var/run/unbound/unbound.pid +PIDFILE=/run/unbound/unbound.pid LOGDIR=/var/log/unbound # Unbound-control is useful but I'm not going to cram it @@ -30,7 +30,7 @@ initchecks() { echo "Removing $PIDFILE" rm -vf $PIDFILE fi - # Check that /var/run/unbound exists. If not, create and chown it. + # Check that /run/unbound exists. If not, create and chown it. if [ ! -e $(dirname $PIDFILE) ]; then mkdir -p $(dirname $PIDFILE) chown unbound:unbound $(dirname $PIDFILE) |