1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/scripts/remove

11 lines
301 B
Text
Raw Normal View History

2014-06-13 11:22:25 +02:00
#!/bin/bash
2014-06-13 17:55:42 +02:00
db_user=yourls
db_name=yourls
root_pwd=$(sudo cat /etc/yunohost/mysql)
2014-06-13 11:22:25 +02:00
domain=$(sudo yunohost app setting yourls domain)
2014-06-13 17:55:42 +02:00
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
2014-06-13 11:22:25 +02:00
sudo rm -rf /var/www/yourls
sudo rm -f /etc/nginx/conf.d/$domain.d/yourls.conf