1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/etherpad_ynh.git synced 2024-09-03 18:36:10 +02:00
etherpad_ynh/scripts/remove

17 lines
473 B
Text
Raw Normal View History

2014-01-07 21:50:21 +01:00
#!/bin/bash
2014-01-10 14:20:40 +01:00
db_user=etherpadlite
db_name=etherpadlite
root_pwd=$(sudo cat /etc/yunohost/mysql)
domain=$(sudo yunohost app setting etherpadlite domain)
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
2014-01-07 21:50:21 +01:00
sudo rm -rf /var/www/etherpadlite
sudo rm -f /etc/nginx/conf.d/$domain.d/etherpadlite.conf
2014-01-10 15:16:03 +01:00
sudo rm -Rf /var/log/etherpad-lite/
sudo update-rc.d etherpad-lite remove
sudo service etherpad-lite stop
sudo rm /etc/init.d/etherpad-lite
2014-01-07 21:50:21 +01:00