diff --git a/management/dns_update.py b/management/dns_update.py index 41cb0530..1849efd9 100755 --- a/management/dns_update.py +++ b/management/dns_update.py @@ -105,9 +105,9 @@ def do_dns_update(env, force=False): if len(updated_domains) == 0: updated_domains.append("DNS configuration") - # Kick nsd if anything changed. + # Tell nsd to reload changed zone files. if len(updated_domains) > 0: - shell('check_call', ["/usr/sbin/service", "nsd", "restart"]) + shell('check_call', ["/usr/sbin/nsd-control", "reload"]) # Write the OpenDKIM configuration tables for all of the mail domains. from mailconfig import get_mail_domains diff --git a/setup/dns.sh b/setup/dns.sh index a6fe7dd9..e82ba8b1 100755 --- a/setup/dns.sh +++ b/setup/dns.sh @@ -107,6 +107,9 @@ EOF echo "Installing nsd (DNS server)..." apt_install nsd ldnsutils openssh-client +# Make sure nsd is running and has the latest configuration +restart_service nsd + # Create DNSSEC signing keys. mkdir -p "$STORAGE_ROOT/dns/dnssec"; diff --git a/setup/management.sh b/setup/management.sh index 18bd75f6..385390bd 100755 --- a/setup/management.sh +++ b/setup/management.sh @@ -16,18 +16,6 @@ echo "Installing Mail-in-a-Box system management daemon..." # DEPENDENCIES -# We used to install management daemon-related Python packages -# directly to /usr/local/lib. We moved to a virtualenv because -# these packages might conflict with apt-installed packages. -# We may have a lingering version of acme that conflcits with -# certbot, which we're about to install below, so remove it -# first. Once acme is installed by an apt package, this might -# break the package version and `apt-get install --reinstall python3-acme` -# might be needed in that case. -while [ -d /usr/local/lib/python3.4/dist-packages/acme ]; do - pip3 uninstall -y acme; -done - # duplicity is used to make backups of user data. # # virtualenv is used to isolate the Python 3 packages we @@ -99,6 +87,8 @@ rm -f /tmp/bootstrap.zip # Create an init script to start the management daemon and keep it # running after a reboot. +# Set a long timeout since some commands take a while to run, matching +# the timeout we set for PHP (fastcgi_read_timeout in the nginx confs). # Note: Authentication currently breaks with more than 1 gunicorn worker. cat > $inst_dir/start <