summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bind/bind/generate-rndc-key.sh
blob: ef915c0ae5a4611d72389100fc851df39afc182f (plain)
1
2
3
4
5
6
7
8
#!/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