Extra directory

This commit is contained in:
Bob Mottram 2016-10-31 23:12:55 +00:00
parent b16738fd5f
commit 8560f928cd
1 changed files with 8 additions and 0 deletions

View File

@ -54,6 +54,10 @@ pihole_variables=(ONION_ONLY
PIHOLE_DNS2)
function pihole_copy_files {
if [ ! -d /etc/.pihole ]; then
mkdir /etc/.pihole
fi
cp $INSTALL_DIR/pihole/adlists.default /etc/.pihole/adlists.default
cp $INSTALL_DIR/pihole/adlists.default $piholeDir/adlists.default
cp $piholeDir/adlists.default $piholeDir/adlists.list
#cp $INSTALL_DIR/pihole/adlists.default $PIHOLE_ADLIST
@ -337,6 +341,10 @@ function remove_pihole {
rm -rf $piholeDir
fi
if [ -d /etc/.pihole ]; then
rm -rf /etc/.pihole
fi
if [ -f /var/log/pihole.log ]; then
rm /var/log/pihole.log
fi