36 lines
631 B
Bash
36 lines
631 B
Bash
#!/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)
|