mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix #1265 to use /bin/kill.
git-svn-id: file:///svn/unbound/trunk@4173 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
0b10c8da28
commit
6e0ba733f3
4 changed files with 4 additions and 6 deletions
3
configure
vendored
3
configure
vendored
|
|
@ -760,7 +760,6 @@ ub_conf_file
|
|||
UNBOUND_LOCALSTATE_DIR
|
||||
UNBOUND_SYSCONF_DIR
|
||||
UNBOUND_SBIN_DIR
|
||||
UNBOUND_BIN_DIR
|
||||
EGREP
|
||||
GREP
|
||||
CPP
|
||||
|
|
@ -4131,8 +4130,6 @@ fi
|
|||
#
|
||||
# Determine configuration file
|
||||
# the eval is to evaluate shell expansion twice
|
||||
UNBOUND_BIN_DIR=`eval echo "${bindir}"`
|
||||
|
||||
UNBOUND_SBIN_DIR=`eval echo "${sbindir}"`
|
||||
|
||||
UNBOUND_SYSCONF_DIR=`eval echo "${sysconfdir}"`
|
||||
|
|
|
|||
|
|
@ -125,8 +125,6 @@ fi
|
|||
#
|
||||
# Determine configuration file
|
||||
# the eval is to evaluate shell expansion twice
|
||||
UNBOUND_BIN_DIR=`eval echo "${bindir}"`
|
||||
AC_SUBST(UNBOUND_BIN_DIR)
|
||||
UNBOUND_SBIN_DIR=`eval echo "${sbindir}"`
|
||||
AC_SUBST(UNBOUND_SBIN_DIR)
|
||||
UNBOUND_SYSCONF_DIR=`eval echo "${sysconfdir}"`
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Documentation=man:unbound(8)
|
|||
WantedBy=multi-user.target
|
||||
|
||||
[Service]
|
||||
ExecReload=@UNBOUND_BIN_DIR@/kill -HUP $MAINPID
|
||||
ExecReload=/bin/kill -HUP $MAINPID
|
||||
ExecStart=@UNBOUND_SBIN_DIR@/unbound
|
||||
NotifyAccess=main
|
||||
Type=notify
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
18 May 2017: Wouter
|
||||
- Fix #1265 to use /bin/kill.
|
||||
|
||||
17 May 2017: Wouter
|
||||
- Fix #1265: contrib/unbound.service contains hardcoded path.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue