Commit 58349a94 authored by Joshua Tauberer's avatar Joshua Tauberer

when updating DNS, clear the local DNS cache

parent 93c2258d
......@@ -120,6 +120,10 @@ def do_dns_update(env, force=False):
# If this is the only thing that changed?
updated_domains.append("OpenDKIM configuration")
# Clear bind9's DNS cache so our own DNS resolver is up to date.
# (ignore errors with trap=True)
shell('check_call', ["/usr/sbin/rndc", "flush"], trap=True)
if len(updated_domains) == 0:
# if nothing was updated (except maybe OpenDKIM's files), don't show any output
return ""
......
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