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

79 lines
2.1 KiB
Text
Raw Normal View History

2017-06-08 13:32:01 +02:00
#!/bin/bash
2017-09-15 18:45:18 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2017-06-12 22:25:19 +02:00
2017-06-08 13:32:01 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-09-15 18:45:18 +02:00
domain=$(ynh_app_setting_get $app domain)
port=$(ynh_app_setting_get $app port)
db_name=$(ynh_app_setting_get $app db_name)
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#=================================================
if yunohost service status | grep -q $app
then
echo "Remove $app service"
yunohost service remove $app
fi
#=================================================
# REMOVE DEPENDENCIES
#=================================================
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db $db_name $db_name
2017-06-08 13:32:01 +02:00
2017-09-15 18:45:18 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2017-06-08 13:32:01 +02:00
2017-09-15 18:45:18 +02:00
# Remove the app directory securely
ynh_secure_remove "/var/www/$app"
2017-06-08 13:32:01 +02:00
2017-09-15 18:45:18 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2017-06-08 13:32:01 +02:00
2017-09-15 18:45:18 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2017-06-13 22:18:57 +02:00
2017-09-15 18:45:18 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
2017-06-13 22:18:57 +02:00
2017-09-15 18:45:18 +02:00
# Remove a cron file
ynh_secure_remove "/etc/cron.d/$app"
2017-06-14 20:48:12 +02:00
2017-09-15 18:45:18 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2017-06-08 13:32:01 +02:00
2017-09-15 18:45:18 +02:00
# Delete a system user
ynh_system_user_delete $app