mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Do not account for refactor anymore (#4355)
Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
parent
5b03160295
commit
109340033e
1 changed files with 0 additions and 25 deletions
|
@ -1778,27 +1778,6 @@ installLogrotate() {
|
||||||
printf "%b %b %s\\n" "${OVER}" "${TICK}" "${str}"
|
printf "%b %b %s\\n" "${OVER}" "${TICK}" "${str}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# At some point in the future this list can be pruned, for now we'll need it to ensure updates don't break.
|
|
||||||
# Refactoring of install script has changed the name of a couple of variables. Sort them out here.
|
|
||||||
accountForRefactor() {
|
|
||||||
sed -i 's/piholeInterface/PIHOLE_INTERFACE/g' "${setupVars}"
|
|
||||||
sed -i 's/IPv4_address/IPV4_ADDRESS/g' "${setupVars}"
|
|
||||||
sed -i 's/IPv4addr/IPV4_ADDRESS/g' "${setupVars}"
|
|
||||||
sed -i 's/IPv6_address/IPV6_ADDRESS/g' "${setupVars}"
|
|
||||||
sed -i 's/piholeIPv6/IPV6_ADDRESS/g' "${setupVars}"
|
|
||||||
sed -i 's/piholeDNS1/PIHOLE_DNS_1/g' "${setupVars}"
|
|
||||||
sed -i 's/piholeDNS2/PIHOLE_DNS_2/g' "${setupVars}"
|
|
||||||
sed -i 's/^INSTALL_WEB=/INSTALL_WEB_INTERFACE=/' "${setupVars}"
|
|
||||||
# Add 'INSTALL_WEB_SERVER', if its not been applied already: https://github.com/pi-hole/pi-hole/pull/2115
|
|
||||||
if ! grep -q '^INSTALL_WEB_SERVER=' ${setupVars}; then
|
|
||||||
local webserver_installed=false
|
|
||||||
if grep -q '^INSTALL_WEB_INTERFACE=true' ${setupVars}; then
|
|
||||||
webserver_installed=true
|
|
||||||
fi
|
|
||||||
echo -e "INSTALL_WEB_SERVER=$webserver_installed" >> "${setupVars}"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Install base files and web interface
|
# Install base files and web interface
|
||||||
installPihole() {
|
installPihole() {
|
||||||
# If the user wants to install the Web interface,
|
# If the user wants to install the Web interface,
|
||||||
|
@ -1829,10 +1808,6 @@ installPihole() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# For updates and unattended install.
|
|
||||||
if [[ "${useUpdateVars}" == true ]]; then
|
|
||||||
accountForRefactor
|
|
||||||
fi
|
|
||||||
# Install base files and web interface
|
# Install base files and web interface
|
||||||
if ! installScripts; then
|
if ! installScripts; then
|
||||||
printf " %b Failure in dependent script copy function.\\n" "${CROSS}"
|
printf " %b Failure in dependent script copy function.\\n" "${CROSS}"
|
||||||
|
|
Loading…
Reference in a new issue