2012-12-20 13:34:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
|
2013-08-16 11:08:20 +00:00
|
|
|
# This script generates /etc/rndc.key if doesn't exist AND if there is no rndc.conf
|
2012-12-20 13:34:39 +00:00
|
|
|
|
2013-08-16 11:08:20 +00:00
|
|
|
if [ ! -s /etc/rndc.key -a ! -s /etc/rndc.conf ]; then
|
2012-12-20 13:34:39 +00:00
|
|
|
echo -n $"Generating /etc/rndc.key:"
|
2017-10-31 16:37:27 +00:00
|
|
|
if /usr/sbin/rndc-confgen -a -A hmac-sha256 -r /dev/urandom > /dev/null 2>&1
|
|
|
|
then
|
2012-12-20 13:34:39 +00:00
|
|
|
chmod 640 /etc/rndc.key
|
2017-10-31 16:37:27 +00:00
|
|
|
chown root:named /etc/rndc.key
|
2012-12-20 13:34:39 +00:00
|
|
|
[ -x /sbin/restorecon ] && /sbin/restorecon /etc/rndc.key
|
|
|
|
success $"/etc/rndc.key generation"
|
|
|
|
echo
|
|
|
|
else
|
|
|
|
failure $"/etc/rndc.key generation"
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
fi
|