9 lines
222 B
Bash
9 lines
222 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -s /etc/bind/rndc.key ]; then
|
|
echo -n "Generating /etc/bind/rndc.key:"
|
|
/usr/sbin/rndc-confgen -a -b 512 -r /dev/urandom
|
|
chown root:bind /etc/bind/rndc.key
|
|
chmod 0640 /etc/bind/rndc.key
|
|
fi
|