From b2653d82830b90512206d5ef7e2973af18e2400d Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 2 Aug 2017 01:13:11 +0200 Subject: initial commit --- uninstall.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 uninstall.sh (limited to 'uninstall.sh') 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 " + 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 -- cgit v1.2.1