2017-04-08 02:04:27 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
|
|
|
|
# GENERIC START
|
|
|
|
|
#=================================================
|
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
|
#=================================================
|
2017-05-06 22:23:22 +00:00
|
|
|
|
2019-03-19 22:54:41 +00:00
|
|
|
source _common.sh
|
|
|
|
|
source ynh_install_ruby
|
2019-04-06 14:08:48 +00:00
|
|
|
source ynh_add_secure_repos__3
|
|
|
|
|
source /usr/share/yunohost/helpers
|
2018-05-01 16:49:32 +00:00
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# LOAD SETTINGS
|
|
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
2017-04-08 02:04:27 +00:00
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
2019-05-10 14:34:57 +00:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
|
db_user==$app
|
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2017-04-08 02:04:27 +00:00
|
|
|
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
|
|
|
|
# STANDARD REMOVE
|
|
|
|
|
#=================================================
|
|
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
2019-03-18 03:22:38 +00:00
|
|
|
#=================================================
|
2017-04-08 02:04:27 +00:00
|
|
|
|
2019-03-21 01:07:49 +00:00
|
|
|
# Remove a service from the admin panel, added by `yunohost service add`
|
2019-03-19 22:54:41 +00:00
|
|
|
if yunohost service status "$app-web" >/dev/null 2>&1
|
2017-04-10 02:55:10 +00:00
|
|
|
then
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing $app-web service..." --time --weight=1
|
2018-05-01 16:49:32 +00:00
|
|
|
yunohost service remove "$app-web"
|
2017-04-10 02:55:10 +00:00
|
|
|
fi
|
|
|
|
|
|
2019-03-19 22:54:41 +00:00
|
|
|
if yunohost service status "$app-sidekiq" >/dev/null 2>&1
|
2017-04-10 02:55:10 +00:00
|
|
|
then
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing $app-sidekiq service..." --time --weight=1
|
2018-05-01 16:49:32 +00:00
|
|
|
yunohost service remove "$app-sidekiq"
|
2017-04-10 02:55:10 +00:00
|
|
|
fi
|
|
|
|
|
|
2019-03-19 22:54:41 +00:00
|
|
|
if yunohost service status "$app-streaming" >/dev/null 2>&1
|
2017-04-10 02:55:10 +00:00
|
|
|
then
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing $app-streaming service..." --time --weight=1
|
2018-05-01 16:49:32 +00:00
|
|
|
yunohost service remove "$app-streaming"
|
2017-04-10 02:55:10 +00:00
|
|
|
fi
|
|
|
|
|
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
2019-03-18 03:22:38 +00:00
|
|
|
# STOP AND REMOVE SERVICE
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --time --weight=1
|
2019-03-18 03:22:38 +00:00
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
|
ynh_remove_systemd_config "$app-web"
|
|
|
|
|
ynh_remove_systemd_config "$app-sidekiq"
|
|
|
|
|
ynh_remove_systemd_config "$app-streaming"
|
2018-05-01 16:49:32 +00:00
|
|
|
|
|
|
|
|
#=================================================
|
2019-03-18 03:22:38 +00:00
|
|
|
# REMOVE THE POSTGRESQL DATABASE
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing the PostgreSQL database..." --time --weight=1
|
2018-05-01 16:49:32 +00:00
|
|
|
|
2019-05-10 14:34:57 +00:00
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
|
ynh_psql_remove_db --db_user="$db_user" --db_name="$db_name"
|
2017-04-08 02:04:27 +00:00
|
|
|
|
2019-03-18 03:22:38 +00:00
|
|
|
#=================================================
|
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing dependencies..." --time --weight=1
|
2019-03-18 03:22:38 +00:00
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
2019-03-19 22:54:41 +00:00
|
|
|
ynh_remove_ruby
|
2019-03-18 03:22:38 +00:00
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
ynh_remove_nodejs
|
2019-03-27 20:20:14 +00:00
|
|
|
ynh_remove_extra_repo
|
2019-03-20 01:31:15 +00:00
|
|
|
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --time --weight=1
|
2017-04-08 02:04:27 +00:00
|
|
|
|
2018-05-01 16:49:32 +00:00
|
|
|
# Remove the app directory securely
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2017-04-08 02:04:27 +00:00
|
|
|
|
2018-05-01 16:49:32 +00:00
|
|
|
#=================================================
|
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing nginx web server configuration..." --time --weight=1
|
2019-03-18 03:22:38 +00:00
|
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
2018-06-21 02:48:02 +00:00
|
|
|
ynh_remove_nginx_config
|
2018-05-01 16:49:32 +00:00
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
|
#=================================================
|
2019-03-18 03:22:38 +00:00
|
|
|
# REMOVE THE CRON FILE
|
|
|
|
|
#=================================================
|
2017-04-08 02:04:27 +00:00
|
|
|
|
2018-11-07 04:12:21 +00:00
|
|
|
# Remove a cron file
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2018-05-01 16:49:32 +00:00
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
|
#=================================================
|
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
|
#=================================================
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --time --weight=1
|
2019-03-18 03:22:38 +00:00
|
|
|
|
|
|
|
|
# Delete a system user
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_system_user_delete --username=$app
|
2019-03-18 03:22:38 +00:00
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# END OF SCRIPT
|
|
|
|
|
#=================================================
|
|
|
|
|
|
2019-05-10 14:34:57 +00:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --time --last
|