mirror of
https://github.com/moparisthebest/pi-hole
synced 2024-10-31 23:45:04 -04:00
7 lines
241 B
Bash
7 lines
241 B
Bash
# !/bin/bash
|
|
# DNS config file
|
|
# Run as a local script since modifying it will disconnect the Internet connection
|
|
sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
|
|
sudo mv /etc/dnsmasq.conf.pihole /etc/dnsmasq.conf
|
|
sudo service dnsmasq start
|