mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
even further simplify
This commit is contained in:
parent
615ca56ea3
commit
324d4433c3
1 changed files with 9 additions and 13 deletions
|
@ -872,24 +872,20 @@ installPiholeWeb() {
|
|||
fi
|
||||
# Install the web interface
|
||||
echo ":::"
|
||||
if [ -d "/var/www/html/pihole" ]; then
|
||||
if [[ ${CUSTOMBLOCKPAGE} == false ]]; then
|
||||
echo -n "::: Installing block page..."
|
||||
install -D ${PI_HOLE_LOCAL_REPO}/advanced/index.* /advanced/blockingpage.* /var/www/html/pihole/
|
||||
echo " done!"
|
||||
fi
|
||||
else
|
||||
echo "::: Creating directory for blocking page"
|
||||
|
||||
if [[ ${CUSTOMBLOCKPAGE} == false ]]; then
|
||||
echo -n "::: Installing block page..."
|
||||
install -d /var/www/html/pihole
|
||||
install -D ${PI_HOLE_LOCAL_REPO}/advanced/index.* /advanced/blockingpage.* /var/www/html/pihole/
|
||||
if [ -f /var/www/html/index.lighttpd.html ]; then
|
||||
mv /var/www/html/index.lighttpd.html /var/www/html/index.lighttpd.orig
|
||||
else
|
||||
printf "\n:::\tNo default index.lighttpd.html file found... not backing up"
|
||||
fi
|
||||
echo " done!"
|
||||
fi
|
||||
|
||||
if [ -f /var/www/html/index.lighttpd.html ]; then
|
||||
mv /var/www/html/index.lighttpd.html /var/www/html/index.lighttpd.orig
|
||||
else
|
||||
printf "\n:::\tNo default index.lighttpd.html file found... not backing up"
|
||||
fi
|
||||
|
||||
# Install Sudoer file
|
||||
echo ":::"
|
||||
echo -n "::: Installing sudoer file..."
|
||||
|
|
Loading…
Reference in a new issue