mirror of
https://github.com/YunoHost-Apps/etherpad_ynh.git
synced 2024-09-03 18:36:10 +02:00
555ed332e3
updated manifest updated install and remove script variable, multi-instance updated nginx conf added readme
17 lines
509 B
Bash
17 lines
509 B
Bash
#!/bin/bash
|
|
|
|
db_user=etherpadlite
|
|
db_name=etherpadlite
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
path=$(ynh_app_setting_get $app path)
|
|
|
|
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
|
sudo rm -rf /var/www/etherpadlite
|
|
|
|
rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
sudo service nginx reloadsudo 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
|