mirror of
https://github.com/pi-hole/pi-hole
synced 2025-01-03 12:40:56 +00:00
Add updatePihole method
This commit is contained in:
parent
f54828352d
commit
fdb104348c
@ -828,6 +828,52 @@ installPihole() {
|
|||||||
configureFirewall
|
configureFirewall
|
||||||
}
|
}
|
||||||
|
|
||||||
|
installPihole() {
|
||||||
|
# Install base files and web interface
|
||||||
|
checkForDependencies # done
|
||||||
|
stopServices
|
||||||
|
setUser
|
||||||
|
${SUDO} mkdir -p /etc/pihole/
|
||||||
|
if [ ! -d "/var/www/html" ]; then
|
||||||
|
${SUDO} mkdir -p /var/www/html
|
||||||
|
fi
|
||||||
|
${SUDO} chown ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} /var/www/html
|
||||||
|
${SUDO} chmod 775 /var/www/html
|
||||||
|
${SUDO} usermod -a -G ${LIGHTTPD_GROUP} pihole
|
||||||
|
if [ -x "$(command -v lighty-enable-mod)" ]; then
|
||||||
|
${SUDO} lighty-enable-mod fastcgi fastcgi-php > /dev/null
|
||||||
|
else
|
||||||
|
printf "\n:::\tWarning: 'lighty-enable-mod' utility not found. Please ensure fastcgi is enabled if you experience issues.\n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
getGitFiles
|
||||||
|
installScripts
|
||||||
|
installConfigs
|
||||||
|
installConfigs
|
||||||
|
CreateLogFile
|
||||||
|
configureSelinux
|
||||||
|
installPiholeWeb
|
||||||
|
installCron
|
||||||
|
runGravity
|
||||||
|
configureFirewall
|
||||||
|
}
|
||||||
|
|
||||||
|
updatePihole() {
|
||||||
|
# Install base files and web interface
|
||||||
|
checkForDependencies # done
|
||||||
|
stopServices
|
||||||
|
getGitFiles
|
||||||
|
installScripts
|
||||||
|
installConfigs
|
||||||
|
installConfigs
|
||||||
|
CreateLogFile
|
||||||
|
configureSelinux
|
||||||
|
installPiholeWeb
|
||||||
|
installCron
|
||||||
|
runGravity
|
||||||
|
configureFirewall
|
||||||
|
}
|
||||||
|
|
||||||
configureSelinux() {
|
configureSelinux() {
|
||||||
if [ -x "$(command -v getenforce)" ]; then
|
if [ -x "$(command -v getenforce)" ]; then
|
||||||
printf "\n::: SELinux Detected\n"
|
printf "\n::: SELinux Detected\n"
|
||||||
@ -908,12 +954,9 @@ if [[ ${useUpdateVars} == false ]]; then
|
|||||||
# Install and log everything to a file
|
# Install and log everything to a file
|
||||||
installPihole | tee ${tmpLog}
|
installPihole | tee ${tmpLog}
|
||||||
else
|
else
|
||||||
echo "Hi!"
|
updatePihole | tee ${tmpLog}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Move the log file into /etc/pihole for storage
|
# Move the log file into /etc/pihole for storage
|
||||||
${SUDO} mv ${tmpLog} ${instalLogLoc}
|
${SUDO} mv ${tmpLog} ${instalLogLoc}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user