1
0
Fork 0
mirror of https://github.com/Luzifer/dns.git synced 2024-11-14 08:52:47 +00:00
dns/docker-entrypoint.sh

22 lines
381 B
Bash
Raw Normal View History

#!/usr/local/bin/dumb-init /bin/bash
set -euxo pipefail
# Ensure default config without zones
[ -e /src/zones/named.conf ] || {
cp /src/named.conf.default /src/zones/named.conf
}
if [ "${1:-}" = 'named' ]; then
# Generate rndc communication key
rndc-confgen -a
2019-12-23 21:34:02 +00:00
chmod 0644 /etc/bind/rndc.key
# Start crond in the background
crond
# Start coredns
exec "$@"
fi
exec "$@"