1
0
mirror of https://github.com/Luzifer/dns.git synced 2024-09-19 23:32:56 +00:00
dns/docker-entrypoint.sh

21 lines
350 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
# Start crond in the background
crond
# Start coredns
exec "$@"
fi
exec "$@"