Have install create directory

This commit is contained in:
Dan Schaper 2017-01-27 21:50:32 -08:00
parent 1421c31179
commit 52e0aa11af
No known key found for this signature in database
GPG Key ID: 572E999E385B7BFC
1 changed files with 4 additions and 2 deletions

View File

@ -815,15 +815,17 @@ installPiholeWeb() {
fi
else
mkdir -p /var/www/html/pihole
echo "::: Creating directory for blocking page"
install -d /var/www/html/pihole
install -D /etc/.pihole/advanced/{index,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
install /etc/.pihole/advanced/{index,blockingpage}.* /var/www/html/pihole/.
echo " done!"
fi
# Install Sudoer file
echo ":::"
echo -n "::: Installing sudoer file..."