create_opendkim_key.sh: add support for creating missing _domainkey zone.

This commit is contained in:
2019-01-05 04:03:45 +01:00
parent 350d05bb8f
commit 593e906704
2 changed files with 347 additions and 103 deletions

View File

@ -6,13 +6,13 @@
# ----------
# DNS Server
# ----------
# - dns_server
# -
# - The DNS Server who is serving the update zone and is used
# - for the dynamic updates (nsupdate)
# -
dns_server="b.ns.oopen.de"
# - dns_dkim_zone_master_server
# -
# - The DNS Server who is serving the update zone and is used
# - for the dynamic updates (nsupdate)
# -
#dns_dkim_zone_master_server=""
# - update_dns
# -
@ -109,7 +109,7 @@ dns_server="b.ns.oopen.de"
# - Script increases the serial for a given domain or a given
# - hostname's concerning domain.
# -
# - Defaults to /root/bin/bind/bind_set_new_serial.sh
# - Defaults to '/root/bin/bind/bind_set_new_serial.sh'
# -
#set_new_serial_script="/root/bin/bind/bind_set_new_serial.sh"
@ -117,7 +117,25 @@ dns_server="b.ns.oopen.de"
# -
# - Script adds DKIM subdomain delegation for a given domain
# -
#create_dkim_delegation_script="bind_create_dkim_delegation.sh"
# - Defaults to '/root/bin/bind/bind_create_dkim_delegation.sh'
# -
#create_dkim_delegation_script="/root/bin/bind/bind_create_dkim_delegation.sh"
# - add_dkim_zone_master_script
# -
# - Script adds zone _domainkey.<dkim domain> as master zone
# -
# - Defaults to '/root/bin/bind/bind_add_dkim_zone_master.sh'
# -
#add_dkim_zone_master_script="/root/bin/bind/bind_add_dkim_zone_master.sh"
# - add_dkim_zone_slave_script
# -
# - Script adds zone _domainkey.<dkim domain> as slave zone
# -
# - Defaults to '/root/bin/bind/bind_add_dkim_zone_slave.sh'
# -
#add_dkim_zone_slave_script="/root/bin/bind/bind_add_dkim_zone_slave.sh"