mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
If named gets stopped, then started again, but isc-dhcpd isn't also restarted, then we want named to at least have the existing content. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
56 lines
1.2 KiB
Bash
56 lines
1.2 KiB
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2014 Noah Meyerhans <frodo@morgul.net>
|
|
# Licensed under the terms of the GNU General Public License version 2
|
|
# or (at your discretion) any later later version
|
|
|
|
# shellcheck disable=SC2034
|
|
USE_PROCD=1
|
|
START=22
|
|
|
|
config_dir=/etc/bind
|
|
run_dir=/var/run/named
|
|
log_dir=/var/log/named
|
|
cache_dir=/var/cache/bind
|
|
zone_dir=$config_dir/zones
|
|
lib_dir=/var/lib/bind
|
|
|
|
config_file=$config_dir/named.conf
|
|
|
|
reload_service() {
|
|
rndc -q reload
|
|
}
|
|
|
|
stop_service() {
|
|
rndc stop
|
|
}
|
|
|
|
start_service() {
|
|
user_exists bind 57 || user_add bind 57
|
|
group_exists bind 57 || group_add bind 57
|
|
|
|
for dir in $run_dir $log_dir $cache_dir $zone_dir; do
|
|
if [ ! -e "$dir" ]; then
|
|
mkdir -p "$dir"
|
|
fi
|
|
chown bind:bind "$dir"
|
|
chmod 0775 "$dir"
|
|
done
|
|
|
|
if [ ! -e $lib_dir ]; then
|
|
mkdir -p "$(dirname $lib_dir)"
|
|
ln -sf $zone_dir $lib_dir
|
|
fi
|
|
|
|
if [ ! -s /etc/bind/rndc.key ] && [ ! -s /etc/bind/rndc.conf ]; then
|
|
rndc-confgen -a
|
|
chown bind:bind /etc/bind/rndc.key
|
|
chmod 0640 /etc/bind/rndc.key
|
|
fi
|
|
|
|
procd_open_instance
|
|
procd_set_param command /usr/sbin/named -u bind -f -c $config_file
|
|
procd_set_param file $config_file $config_dir/db.*
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|