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

remove: improve comments

This commit is contained in:
Pierre de La Morinerie 2017-10-10 17:39:26 +05:30
parent f1b741980f
commit c2e27b9764

View file

@ -1,33 +1,59 @@
#!/bin/bash #!/bin/bash
set -u # treat unset variables as an error set -u # treat unset variables as an error
# Source app helpers #=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
# Read configuration #=================================================
# LOAD SETTINGS
#=================================================
domain=$(ynh_app_setting_get mattermost domain) domain=$(ynh_app_setting_get mattermost domain)
db_name="mattermost" db_name="mattermost"
db_user="mmuser" db_user="mmuser"
# Stop service #=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
sudo supervisorctl stop mattermost sudo supervisorctl stop mattermost
sudo rm -f /etc/supervisor/conf.d/mattermost.conf
# Remove sources and data #=================================================
sudo rm -rf /var/www/mattermost # REMOVE THE MYSQL DATABASE
sudo rm -rf /home/yunohost.app/mattermost #=================================================
# Remove database
# (DROP USER IF EXISTS is only available on MySQL >= 5.7, so we don't use it for now) # (DROP USER IF EXISTS is only available on MySQL >= 5.7, so we don't use it for now)
ynh_mysql_execute_as_root "DROP DATABASE IF EXISTS $db_name ; DROP USER $db_user@localhost ;" ynh_mysql_execute_as_root "DROP DATABASE IF EXISTS $db_name ; DROP USER $db_user@localhost ;"
# Remove uploaded files #=================================================
# REMOVE APP MAIN DIR
#=================================================
# Delete SMTP user sudo rm -rf /var/www/mattermost
sudo userdel mattermost sudo rm -rf /home/yunohost.app/mattermost
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
# Remove configuration files
sudo rm -f /etc/nginx/conf.d/$domain.d/mattermost.conf sudo rm -f /etc/nginx/conf.d/$domain.d/mattermost.conf
sudo rm -f /etc/supervisor/conf.d/mattermost.conf
# Remove log files #=================================================
sudo rm -f /var/log/mattermost.log # REMOVE LOG FILE
#=================================================
sudo rm -f "/var/log/mattermost.log"
#=================================================
# REMOVE DEDICATED USER
#=================================================
sudo userdel mattermost