From 8ed15168c022fae1ebcd4b6e29fd37e7840a573f Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Wed, 4 Jun 2014 18:44:13 -0400 Subject: [PATCH] the new dns_update totally forgot to write the OpenDKIM tables --- management/dns_update.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/management/dns_update.py b/management/dns_update.py index 9ac1a0f6..b7000a5c 100755 --- a/management/dns_update.py +++ b/management/dns_update.py @@ -31,6 +31,9 @@ def do_dns_update(env): # Write the main nsd.conf file. write_nsd_conf(zonefiles) + # Write the OpenDKIM configuration tables. + write_opendkim_tables(zonefiles, env) + # Kick nsd. os.system("service nsd restart")