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

107 lines
3 KiB
Text
Raw Normal View History

2017-04-08 04:04:27 +02:00
#!/bin/bash
2018-05-01 18:49:32 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-05-07 00:23:22 +02:00
2018-04-06 19:58:23 +02:00
source _common.sh # Loads the generic functions usually used in the script
2017-04-08 04:04:27 +02:00
# Source app helpers
source /usr/share/yunohost/helpers
2018-05-01 18:49:32 +02:00
source _future.sh
#=================================================
# LOAD SETTINGS
#=================================================
2017-04-08 04:04:27 +02:00
app=$YNH_APP_INSTANCE_NAME
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
2018-05-01 18:49:32 +02:00
db_name=$(ynh_app_setting_get "$app" db_name)
final_path=$(ynh_app_setting_get "$app" final_path)
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
ynh_remove_systemd_config "$app-web"
ynh_remove_systemd_config "$app-sidekiq"
ynh_remove_systemd_config "$app-streaming"
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#==============================================
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
if yunohost service status | grep -q "$app-web"
then
2018-05-01 18:49:32 +02:00
echo "Remove $app-web service"
yunohost service remove "$app-web"
fi
2018-05-01 18:49:32 +02:00
if yunohost service status | grep -q "$app-sidekiq"
then
2018-05-01 18:49:32 +02:00
echo "Remove $app-sidekiq service"
yunohost service remove "$app-sidekiq"
fi
2018-05-01 18:49:32 +02:00
if yunohost service status | grep -q "$app-streaming"
then
2018-05-01 18:49:32 +02:00
echo "Remove $app-streaming service"
yunohost service remove "$app-streaming"
fi
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2018-06-21 04:48:02 +02:00
ynh_remove_nodejs
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE THE PostgreSQL DATABASE
#=================================================
2017-04-08 04:04:27 +02:00
# delete postgresql database & user
2018-06-21 04:48:02 +02:00
ynh_psql_remove_db "$db_name" "$app"
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
# Remove the app directory securely
ynh_secure_remove "$final_path"
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2018-06-21 04:48:02 +02:00
ynh_remove_nginx_config
2018-05-01 18:49:32 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
2017-04-08 04:04:27 +02:00
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE source.list
#=================================================
if [ "$(lsb_release --codename --short)" == "jessie" ]; then
ynh_secure_remove /etc/apt/sources.list.d/backports.list
2018-06-14 15:19:48 +02:00
ynh_secure_remove /etc/apt/sources.list.d/jessie-backports.list
fi
2017-04-18 02:47:58 +02:00
ynh_secure_remove /etc/apt/sources.list.d/yarn.list
2017-04-11 15:22:54 +02:00
# Delete ruby exec
#ynh_secure_remove /usr/bin/ruby
2017-04-11 15:22:54 +02:00
2018-05-01 18:49:32 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2018-06-21 04:48:02 +02:00
ynh_system_user_delete $app