mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Move dnsmasq disabling and config file rewriting into a dedicated subroutine
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
parent
d996e9c9ee
commit
3cdd6204c5
1 changed files with 21 additions and 19 deletions
|
@ -2184,25 +2184,6 @@ FTLinstall() {
|
||||||
popd > /dev/null || { printf "Unable to return to original directory after FTL binary download.\\n"; return 1; }
|
popd > /dev/null || { printf "Unable to return to original directory after FTL binary download.\\n"; return 1; }
|
||||||
# Install the FTL service
|
# Install the FTL service
|
||||||
printf "%b %b %s\\n" "${OVER}" "${TICK}" "${str}"
|
printf "%b %b %s\\n" "${OVER}" "${TICK}" "${str}"
|
||||||
# dnsmasq can now be stopped and disabled if it exists
|
|
||||||
if which dnsmasq &> /dev/null; then
|
|
||||||
if check_service_active "dnsmasq";then
|
|
||||||
printf " %b FTL can now resolve DNS Queries without dnsmasq running separately\\n" "${INFO}"
|
|
||||||
stop_service dnsmasq
|
|
||||||
disable_service dnsmasq
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Backup existing /etc/dnsmasq.conf if present and ensure that
|
|
||||||
# /etc/dnsmasq.conf contains only "conf-dir=/etc/dnsmasq.d"
|
|
||||||
local conffile="/etc/dnsmasq.conf"
|
|
||||||
if [[ -f "${conffile}" ]]; then
|
|
||||||
printf " %b Backing up %s to %s.old\\n" "${INFO}" "${conffile}" "${conffile}"
|
|
||||||
mv "${conffile}" "${conffile}.old"
|
|
||||||
fi
|
|
||||||
# Create /etc/dnsmasq.conf
|
|
||||||
echo "conf-dir=/etc/dnsmasq.d" > "${conffile}"
|
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
# Otherwise,
|
# Otherwise,
|
||||||
else
|
else
|
||||||
|
@ -2222,6 +2203,27 @@ FTLinstall() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
disable_dnsmasq() {
|
||||||
|
# dnsmasq can now be stopped and disabled if it exists
|
||||||
|
if which dnsmasq &> /dev/null; then
|
||||||
|
if check_service_active "dnsmasq";then
|
||||||
|
printf " %b FTL can now resolve DNS Queries without dnsmasq running separately\\n" "${INFO}"
|
||||||
|
stop_service dnsmasq
|
||||||
|
disable_service dnsmasq
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Backup existing /etc/dnsmasq.conf if present and ensure that
|
||||||
|
# /etc/dnsmasq.conf contains only "conf-dir=/etc/dnsmasq.d"
|
||||||
|
local conffile="/etc/dnsmasq.conf"
|
||||||
|
if [[ -f "${conffile}" ]]; then
|
||||||
|
printf " %b Backing up %s to %s.old\\n" "${INFO}" "${conffile}" "${conffile}"
|
||||||
|
mv "${conffile}" "${conffile}.old"
|
||||||
|
fi
|
||||||
|
# Create /etc/dnsmasq.conf
|
||||||
|
echo "conf-dir=/etc/dnsmasq.d" > "${conffile}"
|
||||||
|
}
|
||||||
|
|
||||||
get_binary_name() {
|
get_binary_name() {
|
||||||
# This gives the machine architecture which may be different from the OS architecture...
|
# This gives the machine architecture which may be different from the OS architecture...
|
||||||
local machine
|
local machine
|
||||||
|
|
Loading…
Reference in a new issue