mirror of
https://github.com/casjaysdevdocker/bind
synced 2025-06-07 21:14:07 -04:00
🗃️ Committing everything that changed 🗃️
rootfs/tmp/etc/bind/named.conf rootfs/usr/local/etc/docker/init.d/02-named.sh
This commit is contained in:
parent
98c6970e14
commit
90e3f9ecac
@ -8,7 +8,7 @@ key "backup-key" { algorithm hmac-sha512; secret "REPLACE_KEY_BACKUP"; };
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
# access settings
|
# access settings
|
||||||
acl "all" { 0.0.0.0/0; ::/0; };
|
acl "all" { 0.0.0.0/0; ::/0; };
|
||||||
acl "secondary" { REPLACE_DNS_SERVER_SECONDARY; };
|
acl "secondary" { REPLACE_DNS_SERVER_SECONDARY };
|
||||||
acl "trusted" { 10.0.0.0/8; 127.0.0.0/8; 172.16.0.0/12; 192.168.0.0/16; };
|
acl "trusted" { 10.0.0.0/8; 127.0.0.0/8; 172.16.0.0/12; 192.168.0.0/16; };
|
||||||
acl "updates" { key "dhcp-key"; key "certbot."; };
|
acl "updates" { key "dhcp-key"; key "certbot."; };
|
||||||
acl "transfers" {key "dhcp-key"; key "certbot."; key "backup-key"; secondary; };
|
acl "transfers" {key "dhcp-key"; key "certbot."; key "backup-key"; secondary; };
|
||||||
@ -27,9 +27,9 @@ options {
|
|||||||
max-ncache-ttl 10800;
|
max-ncache-ttl 10800;
|
||||||
max-udp-size 4096;
|
max-udp-size 4096;
|
||||||
notify yes;
|
notify yes;
|
||||||
also-notify { REPLACE_DNS_SERVER_SECONDARY; };
|
also-notify { REPLACE_DNS_SERVER_SECONDARY };
|
||||||
allow-update { updates; };
|
allow-update { updates; };
|
||||||
allow-update-forwarding { REPLACE_DNS_SERVER_SECONDARY; };
|
allow-update-forwarding { REPLACE_DNS_SERVER_SECONDARY };
|
||||||
allow-transfer { trusted; };
|
allow-transfer { trusted; };
|
||||||
transfer-format many-answers;
|
transfer-format many-answers;
|
||||||
allow-query { any; };
|
allow-query { any; };
|
||||||
|
@ -250,6 +250,7 @@ __run_pre_execute_checks() {
|
|||||||
__update_conf_files() {
|
__update_conf_files() {
|
||||||
local exitCode=0 # default exit code
|
local exitCode=0 # default exit code
|
||||||
local sysname="${SERVER_NAME:-${FULL_DOMAIN_NAME:-$HOSTNAME}}" # set hostname
|
local sysname="${SERVER_NAME:-${FULL_DOMAIN_NAME:-$HOSTNAME}}" # set hostname
|
||||||
|
local secondary_ip=""
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# delete files
|
# delete files
|
||||||
#__rm ""
|
#__rm ""
|
||||||
@ -262,6 +263,12 @@ __update_conf_files() {
|
|||||||
touch "$LOG_DIR/$logfile"
|
touch "$LOG_DIR/$logfile"
|
||||||
chmod -Rf 777 "$logfile"
|
chmod -Rf 777 "$logfile"
|
||||||
done
|
done
|
||||||
|
if [ -n "$DNS_SERVER_SECONDARY" ]; then
|
||||||
|
for ip in ${DNS_SERVER_SECONDARY//;/ }; do
|
||||||
|
secondary_ip+="$ip; "
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
DNS_SERVER_SECONDARY="$secondary_ip"
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# replace variables
|
# replace variables
|
||||||
__replace "REPLACE_KEY_RNDC" "$KEY_RNDC" "$ETC_DIR/rndc.key"
|
__replace "REPLACE_KEY_RNDC" "$KEY_RNDC" "$ETC_DIR/rndc.key"
|
||||||
@ -269,9 +276,13 @@ __update_conf_files() {
|
|||||||
__replace "REPLACE_KEY_DHCP" "$KEY_DHCP" "$NAMED_CONFIG_FILE"
|
__replace "REPLACE_KEY_DHCP" "$KEY_DHCP" "$NAMED_CONFIG_FILE"
|
||||||
__replace "REPLACE_KEY_BACKUP" "$KEY_BACKUP" "$NAMED_CONFIG_FILE"
|
__replace "REPLACE_KEY_BACKUP" "$KEY_BACKUP" "$NAMED_CONFIG_FILE"
|
||||||
__replace "REPLACE_KEY_CERTBOT" "$KEY_CERTBOT" "$NAMED_CONFIG_FILE"
|
__replace "REPLACE_KEY_CERTBOT" "$KEY_CERTBOT" "$NAMED_CONFIG_FILE"
|
||||||
__replace "REPLACE_DNS_SERVER_SECONDARY" "$DNS_SERVER_SECONDARY" "$NAMED_CONFIG_FILE"
|
|
||||||
__find_replace "REPLACE_DNS_SERIAL" "$DNS_SERIAL" "$DATA_DIR/primary"
|
__find_replace "REPLACE_DNS_SERIAL" "$DNS_SERIAL" "$DATA_DIR/primary"
|
||||||
__find_replace "REPLACE_DNS_SERIAL" "$DNS_SERIAL" "$DATA_DIR/secondary"
|
__find_replace "REPLACE_DNS_SERIAL" "$DNS_SERIAL" "$DATA_DIR/secondary"
|
||||||
|
if [ -n "$DNS_SERVER_SECONDARY" ]; then
|
||||||
|
__replace "REPLACE_DNS_SERVER_SECONDARY" "$DNS_SERVER_SECONDARY" "$NAMED_CONFIG_FILE"
|
||||||
|
else
|
||||||
|
sed -i '/REPLACE_DNS_SERVER_SECONDARY/d' "$NAMED_CONFIG_FILE"
|
||||||
|
fi
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# define actions
|
# define actions
|
||||||
if [ -f "$CONF_DIR/custom.conf" ]; then
|
if [ -f "$CONF_DIR/custom.conf" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user