2018-11-21 16:11:09 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-11-28 10:29:55 +01:00
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2019-11-28 02:05:34 +01:00
|
|
|
db_name=$app
|
|
|
|
db_user=$app
|
2019-11-28 10:29:55 +01:00
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2019-03-13 16:44:42 +01:00
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a service from the admin panel, added by `yunohost service add`
|
2019-11-28 10:29:55 +01:00
|
|
|
if yunohost service status "$app" >/dev/null 2>&1
|
2019-03-13 16:44:42 +01:00
|
|
|
then
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removing $app service"
|
2019-11-28 10:29:55 +01:00
|
|
|
yunohost service remove "$app"
|
2019-03-13 16:44:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service"
|
2018-11-21 16:11:09 +01:00
|
|
|
|
2019-03-13 16:44:42 +01:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2018-11-21 16:11:09 +01:00
|
|
|
|
2019-03-13 16:47:06 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removing the PostgreSQL database"
|
2019-03-13 16:47:06 +01:00
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
2019-11-28 10:29:55 +01:00
|
|
|
ynh_psql_remove_db "$db_name" "$db_name"
|
2019-03-13 16:47:06 +01:00
|
|
|
|
2018-11-21 16:11:09 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removing dependencies"
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
2019-03-13 16:47:06 +01:00
|
|
|
ynh_remove_app_dependencies
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removing app main directory"
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removing nginx web server configuration"
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user"
|
2018-11-21 16:11:09 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2019-11-28 10:29:55 +01:00
|
|
|
ynh_system_user_delete "$app"
|
2019-03-13 16:44:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-11-28 02:05:34 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed"
|