Initial commit of source

This commit is contained in:
2025-08-04 19:52:36 +02:00
parent 60b3a3f6f5
commit 3c82ad6936
9 changed files with 1488 additions and 0 deletions

35
config.sh Normal file
View File

@@ -0,0 +1,35 @@
#!/usr/bin/env bash
#
# IP address of the DNS server
#
#DNS_IP="127.0.0.1"
#
# Associative array containing path to key files used for zone transfer and DDNS updates.
# The key has to be in on of the following forms:
# - VIEW
# - ZONE@VIEW
#
#DNS_KEYS=(
# [_default]="/etc/bind/rndc.key"
#)
#
# Paths to external binaries
#
#DIG="/usr/bin/dig"
#IDN2="/usr/bin/idn2"
#NAMED_CHECKCONF="/usr/bin/named-checkconf"
#NSUPDATE="/usr/bin/nsupdate"
#
# Path to library directory
#
#LIB_DIR="/usr/local/dns-manager/lib"
#
# Color of the header text when printing tables
#
#TABLE_HEADER_COLOR="red"
#TERMINAL_WITH=$(/usr/bin/tput cols)