DNSSEC: use RSASHA256 for the .guide tld too

This commit is contained in:
Joshua Tauberer 2014-10-23 17:03:23 +00:00
parent a68703dfb3
commit d790cae0e2
2 changed files with 2 additions and 1 deletions

View File

@ -511,7 +511,7 @@ zone:
########################################################################
def dnssec_choose_algo(domain, env):
if domain.endswith(".email"):
if domain.endswith(".email") or domain.endswith(".guide"):
# At least at GoDaddy, this is the only algorithm supported.
return "RSASHA256"

View File

@ -51,6 +51,7 @@ mkdir -p "$STORAGE_ROOT/dns/dnssec";
# Requires `RSASHA256`
#
# * .email
# * .guide
FIRST=1 #NODOC
for algo in RSASHA1-NSEC3-SHA1 RSASHA256; do