1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00
mattermost_ynh/scripts/remove
Pierre de La Morinerie 9d56b71ee4 First version
2015-10-21 13:03:49 +02:00

20 lines
514 B
Bash
Executable file

#!/bin/bash
set -e # Exit on error
domain=$(sudo yunohost app setting mattermost domain)
db_name="mattermost"
db_user="mmuser"
db_root_pwd=$(sudo cat /etc/yunohost/mysql)
# Stop service
sudo supervisorctl stop mattermost
# Remove sources
sudo rm -rf /var/www/mattermost
# Remove database
mysql -u root -p$db_root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
# Remove configuration files
sudo rm -f /etc/nginx/conf.d/$domain.d/mattermost.conf
sudo rm /etc/supervisor/conf.d/mattermost.conf