Check if any list.* files exist from previous installation, if they do delete them.

This commit is contained in:
Promofaux 2016-01-19 22:52:29 +00:00
parent 03277899ca
commit bc51f88805
1 changed files with 10 additions and 0 deletions

View File

@ -271,6 +271,15 @@ installCron(){
$SUDO curl -o /etc/cron.d/pihole https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/pihole.cron
}
tidyEtcPihole()
{
if ls /etc/pihole/list* 1> /dev/null 2>&1; then
echo "Cleaning up previous install"
$SUDO rm /etc/pihole/list.*
fi
}
installPihole()
{
installDependencies
@ -284,6 +293,7 @@ installConfigs
installWebAdmin
installPiholeWeb
installCron
tidyEtcPihole
$SUDO /usr/local/bin/gravity.sh
}