Explicitly stop dnsmasq service on startup

This commit is contained in:
Joshua Boniface 2018-10-14 18:37:34 -04:00
parent 605889f59f
commit 709be9fbba
1 changed files with 6 additions and 0 deletions

View File

@ -477,6 +477,12 @@ with open(nftables_base_filename, 'w') as nfbasefile:
# Notify a reload of the firewall rules on next keepalive update # Notify a reload of the firewall rules on next keepalive update
open(nftables_update_filename, 'a').close() 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 # PHASE 8 - Set up our objects
############################################################################### ###############################################################################