diff options
Diffstat (limited to '')
-rwxr-xr-x | uninstall.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..5a6f7f3 --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,21 @@ +usage () { + echo "You must set a $1 !" + echo "Usage:" + echo " uninstall.sh <user>" + exit 0 +} + +if [ -z $1 ]; then + usage "USER" +fi + + +USER=$1 + +sudo systemctl stop kresus-$USER.service +sudo rm /etc/systemd/system/kresus-$USER.service +sudo a2dissite $USER.kresus.neodarz.net.conf +sudo a2dissite $USER.kresus.neodarz.net-le-ssl.conf +sudo rm /etc/apache2/sites-available/$USER.kresus.neodarz.net.conf +sudo rm /etc/apache2/sites-available/$USER.kresus.neodarz.net-le-ssl.conf +sudo systemctl reload apache2.service |