Roy's Projects
/
openresolv
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix mandir again
[openresolv]
/
named
diff --git
a/named
b/named
index df7a196ca17f16413048c366fff56aff9b45284b..91ebc8cd8d5ee4ee8c30307cf4b35f34ce9f1580 100755
(executable)
--- a/
named
+++ b/
named
@@
-53,7
+53,8
@@
VARS="$(resolvconf -v)"
eval "${VARS}"
# If our dir doesn't exist then don't do anything
eval "${VARS}"
# If our dir doesn't exist then don't do anything
-NAMEDB=${NAMEDB:-/etc/namedb}
+NAMEDB=/etc/namedb
+[ -d "${NAMEDB}" ] || NAMEDB="/etc/bind"
[ -d "${NAMEDB}" ] || exit 0
NAMEDOPTIONS="${NAMEDB}/resolvconf-options.conf"
[ -d "${NAMEDB}" ] || exit 0
NAMEDOPTIONS="${NAMEDB}/resolvconf-options.conf"
@@
-120,15
+121,6
@@
else
RELOAD="yes"
fi
RELOAD="yes"
fi
-if [ "${RELOAD}" = "yes" ]; then
- # OpenRC style
- if [ -x /etc/init.d/named ] ; then
- /etc/init.d/named --nodeps --quiet conditionalrestart
- fi
- # BSD RC style
- if [ -x /etc/rc.d/named ]; then
- /etc/rc.d/named restart
- fi
-fi
+[ "${RELOAD}" = "yes" ] && resolvconf -s named restart
exit 0
exit 0