Commit eac34918 authored by Joshua Tauberer's avatar Joshua Tauberer

whats_next: move the admin alias check to the system section

parent 023cd12e
......@@ -35,6 +35,10 @@ def run_system_checks(env):
else:
print_ok("SSH disallows password-based login.")
# Check that the administrator alias exists since that's where all
# admin email is automatically directed.
check_alias_exists("administrator@" + env['PRIMARY_HOSTNAME'], env)
print()
def run_domain_checks(env):
......@@ -55,7 +59,6 @@ def run_domain_checks(env):
if domain == env["PRIMARY_HOSTNAME"]:
check_primary_hostname_dns(domain, env)
check_alias_exists("administrator@" + domain, env)
if domain in dns_domains:
check_dns_zone(domain, env, dns_zonefiles)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment