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

19 lines
431 B
Text
Raw Normal View History

#!/bin/bash
2014-12-22 18:56:59 +01:00
app=kanboard
2014-12-22 18:56:59 +01:00
# Retrieve arguments
domain=$(sudo yunohost app setting $app domain)
root_pwd=$(sudo cat /etc/yunohost/mysql)
2014-12-22 18:56:59 +01:00
# Remove sources
sudo rm -rf /var/www/$app
2014-12-22 18:56:59 +01:00
# Remove database
mysql -u root -p$root_pwd -e "DROP DATABASE $app ; DROP USER $app@localhost ;"
2014-07-20 18:10:20 +02:00
2014-12-22 18:56:59 +01:00
# Remove configuration files
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# Restart services
sudo service nginx reload
sudo yunohost app ssowatconf