Update pialert_uninstall.sh

This commit is contained in:
pucherot
2021-04-11 11:32:42 +02:00
parent 85e07c639d
commit faf12f4d18

View File

@@ -20,7 +20,7 @@
LIGHTTPD_CONF_DIR="/etc/lighttpd" LIGHTTPD_CONF_DIR="/etc/lighttpd"
WEBROOT="/var/www/html" WEBROOT="/var/www/html"
LOG=/dev/null LOG="pialert_uninstall_`date +"%Y-%m-%d_%H-%M"`.log"
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# Main # Main
@@ -31,7 +31,7 @@ main() {
log "Logfile: $LOG" log "Logfile: $LOG"
# Ask uninstallation # Ask uninstallation
ask_yesno "This script will uninstall Pi.Alert from this system. Installation path:\n$PIALERT_HOME" \ ask_yesno "This script will uninstall Pi.Alert from this system.\nInstallation path: $PIALERT_HOME" \
"Do you want to continue ?" "Do you want to continue ?"
if ! $ANSWER ; then if ! $ANSWER ; then
exit 1 exit 1
@@ -51,9 +51,12 @@ main() {
# final message # final message
print_header "Uninstallation process finished" print_header "Uninstallation process finished"
print_msg "Note that if you installed Pi-hole during the Pi.Alert installation process, Pi-hole will still be available after uninstalling Pi.Alert" print_msg "Note1: If you installed Pi-hole during the Pi.Alert installation process"
print_msg "lighttpd, PHP, arp-scan & Python have not been uninstalled. They may be required by other software" print_msg " Pi-hole will still be available after uninstalling Pi.Alert"
print_msg "You can uninstall them manually with apt-get" print_msg ""
print_msg "Note2: lighttpd, PHP, arp-scan & Python have not been uninstalled.
print_msg " They may be required by other software"
print_msg " You can uninstall them manually with command 'apt-get remove XX'"
} }