From 709be9fbbaa0e6094497b6d57c3d43df1b5f17a3 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sun, 14 Oct 2018 18:37:34 -0400 Subject: [PATCH] Explicitly stop dnsmasq service on startup --- node-daemon/pvcd/Daemon.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/node-daemon/pvcd/Daemon.py b/node-daemon/pvcd/Daemon.py index 108ede7d..f755e18c 100644 --- a/node-daemon/pvcd/Daemon.py +++ b/node-daemon/pvcd/Daemon.py @@ -477,6 +477,12 @@ with open(nftables_base_filename, 'w') as nfbasefile: # Notify a reload of the firewall rules on next keepalive update open(nftables_update_filename, 'a').close() +############################################################################### +# PHASE 7d - Ensure DNSMASQ is not running +############################################################################### + +common.run_os_command('systemctl stop dnsmasq.service') + ############################################################################### # PHASE 8 - Set up our objects ###############################################################################