Removal of onion deployment

main
Bob Mottram 2020-06-17 22:28:36 +01:00
parent 5cbd7e3643
commit c3b0e39e9d
1 changed files with 22 additions and 0 deletions

View File

@ -1,5 +1,27 @@
#!/bin/bash #!/bin/bash
if [[ "$1" == 'remove' ]]; then
echo 'Removing Epicyon onion instance'
systemctl stop tor
rm /etc/torrc.d/epicyon
rm -rf /var/lib/tor/hidden_service_epicyon
systemctl restart tor
systemctl stop epicyon
systemctl disable epicyon
rm /etc/nginx/sites-enabled/epicyon
rm /etc/nginx/sites-availale/epicyon
rm -rf /opt/epicyon
if [ -d /var/www/cache ]; then
rm -rf /var/www/cache
fi
if [ -d /srv/http/cache ]; then
rm -rf /srv/http/cache
fi
echo 'Epicyon onion instance removed'
exit 0
fi
clear clear
echo 'Installing Epicyon on an onion domain' echo 'Installing Epicyon on an onion domain'