chore(ansible): clean up host_vars YAML and normalize mail text blocks
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
# *** [ Ansible managed: DO NOT EDIT DIRECTLY ] ***
|
||||
|
||||
# ----------------------------------------------------
|
||||
# ---
|
||||
# - Parameter Settings for bind administration scripts.
|
||||
# ---
|
||||
# ----------------------------------------------------
|
||||
|
||||
|
||||
# - BIND_USER
|
||||
# -
|
||||
# - The user under which the nameservice is running
|
||||
# -
|
||||
# - Defaults to 'bind'
|
||||
# -
|
||||
#BIND_USER="bind"
|
||||
|
||||
|
||||
# - BIND_GROUP
|
||||
# -
|
||||
# - The group under which the nameservice is running
|
||||
# -
|
||||
# - Defaults to 'bind'
|
||||
# -
|
||||
#BIND_GROUP="bind"
|
||||
|
||||
|
||||
# - CONF_FILE_DIR
|
||||
# -
|
||||
# - Directory containing bind configuration files
|
||||
# -
|
||||
# - Defaults to "/etc/bind"
|
||||
# -
|
||||
#CONF_FILE_DIR="/root/tmp/bind"
|
||||
CONF_FILE_DIR="/etc/bind"
|
||||
|
||||
|
||||
# - ZONE_FILE_MASTER_DIR
|
||||
# -
|
||||
# - Directory containing the zone files (master)
|
||||
# -
|
||||
# - Defaults to "${CONF_FILE_DIR}/master"
|
||||
# -
|
||||
#ZONE_FILE_MASTER_DIR="${CONF_FILE_DIR}/master"
|
||||
|
||||
|
||||
# - ZONE_FILE_SLAVE_DIR
|
||||
# -
|
||||
# - Directory containing the zone files (slave)
|
||||
# -
|
||||
# - Defaults to "${CONF_FILE_DIR}/slave"
|
||||
# -
|
||||
#ZONE_FILE_SLAVE_DIR="${CONF_FILE_DIR}/slave"
|
||||
|
||||
|
||||
# - ZONE_FILE_SUFFIX
|
||||
# -
|
||||
# - Defaults to 'zone'
|
||||
# -
|
||||
#ZONE_FILE_SUFFIX="zone"
|
||||
|
||||
|
||||
# - ZONES_DECLARATION_FILE
|
||||
# -
|
||||
# - File containing zone declarations
|
||||
# -
|
||||
# - Defaults to ${CONF_FILE_DIR}/named.conf.local
|
||||
# -
|
||||
#ZONES_DECLARATION_FILE="${CONF_FILE_DIR}/named.conf.local"
|
||||
|
||||
|
||||
|
||||
# -----
|
||||
# - bind_change_SOA.sh
|
||||
# -----
|
||||
|
||||
# - SOA_PRIMARY_MASTER
|
||||
# -
|
||||
# - Primary master for all zones
|
||||
# -
|
||||
SOA_PRIMARY_MASTER="a.ns.oopen.de"
|
||||
|
||||
# - SOA_ADMIN_EMAIL
|
||||
# -
|
||||
# - mail address of the responsible of all zones
|
||||
# -
|
||||
SOA_ADMIN_EMAIL="domreg@oopen.de"
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
# *** [ Ansible managed: DO NOT EDIT DIRECTLY ] ***
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# - Parameter Settings for script 'bind_add_dkim_zone_slave.sh'.
|
||||
# ---------------------------------------------------------------
|
||||
|
||||
# - DKIM_DNS_MASTER
|
||||
# -
|
||||
# - Primary master for new DKIM slave zones _domainkey.*
|
||||
# -
|
||||
# - Example:
|
||||
# - DKIM_DNS_MASTER="b.ns.oopen.de"
|
||||
# -
|
||||
# - This option is required and have no default value. But
|
||||
# - option can also set usinf commandline parameter flag '-M'
|
||||
# -
|
||||
DKIM_DNS_MASTER="b.ns.oopen.de"
|
||||
|
||||
# - ALLOW_TRANSFER_OPTION
|
||||
# -
|
||||
# - Example:
|
||||
# - ALLOW_TRANSFER_OPTION="oopen"
|
||||
# -
|
||||
# - Defaults to DKIM_DNS_MASTER IPv4 Address
|
||||
# -
|
||||
#ALLOW_TRANSFER_OPTION=""
|
||||
@@ -0,0 +1,82 @@
|
||||
# *** [ Ansible managed: DO NOT EDIT DIRECTLY ] ***
|
||||
|
||||
# ------------------------------------------------------
|
||||
# - Parameter Settings for script 'create_zone_file.sh'.
|
||||
# ------------------------------------------------------
|
||||
|
||||
# - ZONE_FILE_MASTER_DIR
|
||||
# -
|
||||
# - Directory where all the zonefile love
|
||||
# -
|
||||
# - Defaults to:
|
||||
# - ZONE_FILE_MASTER_DIR=/etc/bind/master
|
||||
# -
|
||||
ZONE_FILE_MASTER_DIR="/etc/bind/master"
|
||||
|
||||
|
||||
# - NS_HOST_1
|
||||
#
|
||||
# - First Nameserver
|
||||
# -
|
||||
# - Example:
|
||||
# - NS_HOST_1="a.ns.oopen.de"
|
||||
# -
|
||||
# - This option is required and has no default value. But
|
||||
# - option can also set using commandline parameter '--ns-host-1''
|
||||
# -
|
||||
NS_HOST_1="a.ns.oopen.de"
|
||||
|
||||
|
||||
# - NS_HOST_2
|
||||
#
|
||||
# - Second Nameserver
|
||||
# -
|
||||
# - Example:
|
||||
# - NS_HOST_2="b.ns.oopen.de"
|
||||
# -
|
||||
# - This option is required and has no default value. But
|
||||
# - option can also set using commandline parameter '--ns-host-2'
|
||||
# -
|
||||
NS_HOST_2="b.ns.oopen.de"
|
||||
|
||||
|
||||
# - MX_HOST_1
|
||||
# -
|
||||
# - Example:
|
||||
# - MX_HOST_1="a.mx.oopen.de"
|
||||
# -
|
||||
# - This option is required and has no default value. But
|
||||
# - option can also set using commandline parameter '--mx-host-1'
|
||||
# -
|
||||
MX_HOST_1="a.mx.oopen.de"
|
||||
|
||||
|
||||
# - MX_HOST_2
|
||||
# -
|
||||
# - Example:
|
||||
# - MX_HOST_1="b.mx.oopen.de"
|
||||
# -
|
||||
# - This option is optinal and has no default value. But
|
||||
# - option can also set by using commandline parameter '--mx-host-2'
|
||||
# -
|
||||
#MX_HOST_2=""
|
||||
|
||||
|
||||
# - WEB_SERVER_IP_4
|
||||
# -
|
||||
# - The webservers IPv4 Address
|
||||
# -
|
||||
# - Example:
|
||||
# - WEB_SERVER_IP_4="162.55.82.78"
|
||||
# -
|
||||
WEB_SERVER_IP_4="162.55.82.78"
|
||||
|
||||
|
||||
# - WEB_SERVER_IP_6
|
||||
# -
|
||||
# - The webservers IPv6 Address
|
||||
# -
|
||||
# - Example:
|
||||
# - WEB_SERVER_IP_6="2a01:4f8:271:1266::78"
|
||||
# -
|
||||
WEB_SERVER_IP_6="2a01:4f8:271:1266::78"
|
||||
Reference in New Issue
Block a user