mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
9 lines
272 B
Bash
9 lines
272 B
Bash
# !/bin/bash
|
|
# Resolver file
|
|
sudo mv /etc/resolv.conf /etc/resolv.conf.orig
|
|
sudo mv /etc/resolv.conf.pihole /etc/resolv.conf
|
|
|
|
# DNS config file
|
|
sudo mv /etc/dnsmasq.conf /etc/rdnsmasq.conf.orig
|
|
sudo mv /etc/dnsmasq.conf.pihole /etc/dnsmasq.conf
|
|
sudo service dnsmasq start
|