Update pialert_uninstall.sh

This commit is contained in:
pucherot
2021-04-11 12:30:27 +02:00
parent 02c625ba0d
commit d71d538de8

View File

@@ -41,17 +41,17 @@ main() {
# Uninstall prrocess # Uninstall prrocess
print_header "Removing files" print_header "Removing files"
sudo rm -r "$PIALERT_HOME" sudo rm -r "$PIALERT_HOME" 2>&1 >> "$LOG"
sudo rm "$LIGHTTPD_CONF_DIR/pialert" sudo rm "$WEBROOT/pialert" 2>&1 >> "$LOG"
sudo rm "$LIGHTTPD_CONF_DIR/conf-available/pialert_front.conf" sudo rm "$LIGHTTPD_CONF_DIR/conf-available/pialert_front.conf" 2>&1 >> "$LOG"
sudo rm "$LIGHTTPD_CONF_DIR/conf-enabled/pialert_front.conf" sudo rm "$LIGHTTPD_CONF_DIR/conf-enabled/pialert_front.conf" 2>&1 >> "$LOG"
sudo rm -r /var/cache/lighttpd/compress/pialert sudo rm -r /var/cache/lighttpd/compress/pialert 2>&1 >> "$LOG"
# Removing # Removing
print_header "Removing Pi.Alert DNS name" print_header "Removing Pi.Alert DNS name"
if [ -f /etc/pihole/custom.list ] ; then if [ -f /etc/pihole/custom.list ] ; then
sudo sed -i '/pi.alert/d' /etc/pihole/custom.list 2>&1 >> "$LOG" sudo sed -i '/pi.alert/d' /etc/pihole/custom.list 2>&1 >> "$LOG"
sudo pihole restartdns 2>&1 >> "$LOG" sudo pihole restartdns 2>&1 >> "$LOG"
fi fi
# Uninstall crontab jobs # Uninstall crontab jobs