2017-09-13 14:49:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-10-17 15:46:35 +02:00
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-10-04 15:22:54 +02:00
|
|
|
db_name=$(ynh_app_setting_get "$app" db_name)
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
2017-09-21 14:48:29 +02:00
|
|
|
if yunohost service status | grep -q "$app"
|
2017-09-13 14:49:10 +02:00
|
|
|
then
|
|
|
|
echo "Remove $app service"
|
2017-09-21 14:48:29 +02:00
|
|
|
systemctl stop "$app.service"
|
|
|
|
yunohost service remove "$app.service"
|
2017-09-13 14:49:10 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
2017-09-21 14:48:29 +02:00
|
|
|
# REMOVE THE PostgreSQL DATABASE
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-09-21 14:48:29 +02:00
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_psql_remove_db "$db_name" "$app"
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
2017-09-21 14:48:29 +02:00
|
|
|
# REMOVE DEPENDENCIES
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-09-21 14:48:29 +02:00
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
2017-09-13 14:49:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove "/var/www/$app"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2017-09-13 16:55:01 +02:00
|
|
|
# REMOVE CRON FILE
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove "/etc/cron.d/$app"
|
|
|
|
|
2017-09-14 13:25:11 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE uwsgi and systemd files
|
|
|
|
#=================================================
|
|
|
|
|
2017-09-20 21:43:09 +02:00
|
|
|
ynh_secure_remove "/etc/systemd/system/$app.service"
|
2017-09-14 13:25:11 +02:00
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Delete a system user
|
2017-10-04 15:22:54 +02:00
|
|
|
ynh_system_user_delete "$app"
|