even further simplify

pull/1437/head
Adam Warner 7 years ago
parent 615ca56ea3
commit 324d4433c3
No known key found for this signature in database
GPG Key ID: 7C062498C7FA6E49

@ -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…
Cancel
Save