PKGBUILDs/extra/bind/bind.install
2016-10-09 15:46:47 +00:00

14 lines
331 B
Plaintext

post_install() {
systemd-sysusers bind.conf
systemd-tmpfiles --create bind.conf
# create an rndc.key if it doesn't already exist
if [[ ! -s etc/rndc.key ]]; then
rndc-confgen -r /dev/urandom -b 256 | head -n 5 >>etc/rndc.key
chown root:named etc/rndc.key
chmod 640 etc/rndc.key
fi
}
# vim:set ts=2 sw=2 et: