thelinuxlist/scripts/pmauninstall.sh

32 lines
573 B
Bash

#!/bin/bash
while [ "$go" != 'y' ] && [ "$go" != 'n' ]; do
read -p "Would you like to uninstall phpMyAdmin? (y/n) " go
done
if [ "$go" == 'n' ]; then
exit
fi
sudo apt remove phpmyadmin -y
sudo apt-get autoremove -y
sudo systemctl restart apache2
while [ "$go" != 'yes' ] && [ "$go" != 'no' ]; do
read -p "Would you like to also uninstall apache2? This is not reversible. (yes/no) " go
done
if [ "$go" == 'no' ]; then
exit
fi
sudo systemctl stop apache2
sudo apt remove apache2 apache2-utils -y
sudo rm -rf /etc/apache2
sudo apt-get autoremove -y