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

17 lines
388 B
Text
Raw Normal View History

2015-10-17 10:47:21 +02:00
#!/bin/bash
app=galette
db_user=galette
db_name=galett
e
root_pwd=$(sudo cat /etc/yunohost/mysql)
domain=$(sudo yunohost app setting galette domain)
2015-10-17 10:47:21 +02:00
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
2015-10-17 10:47:21 +02:00
sudo rm -rf /var/www/$app
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# Restart services
sudo service nginx reload
sudo yunohost app ssowatconf