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

121 lines
3.4 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
#=================================================
2019-03-18 04:22:38 +01:00
ynh_print_info "Loading installation 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
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
2019-03-18 04:22:38 +01:00
#=================================================
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
#=================================================
2019-03-18 04:22:38 +01:00
# STOP AND REMOVE SERVICE
2018-05-01 18:49:32 +02:00
#=================================================
2019-03-18 04:22:38 +01:00
ynh_print_info "Stopping and removing the systemd service"
# 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 18:49:32 +02:00
#=================================================
2019-03-18 04:22:38 +01:00
# REMOVE THE POSTGRESQL DATABASE
2018-05-01 18:49:32 +02:00
#=================================================
2019-03-18 04:22:38 +01:00
ynh_print_info "Removing the PostgreSQL database"
2018-05-01 18:49:32 +02:00
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
2019-03-18 04:22:38 +01:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_print_info "Removing dependencies"
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
ynh_remove_nodejs
2018-05-01 18:49:32 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-03-18 04:22:38 +01:00
ynh_print_info "Removing app main directory"
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
#=================================================
2019-03-18 04:22:38 +01:00
ynh_print_info "Removing nginx web server configuration"
# Remove the dedicated nginx config
2018-06-21 04:48:02 +02:00
ynh_remove_nginx_config
2018-05-01 18:49:32 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
2019-03-18 04:22:38 +01:00
# REMOVE THE CRON FILE
#=================================================
2017-04-08 04:04:27 +02:00
2018-11-07 05:12:21 +01:00
# Remove a cron file
ynh_secure_remove "/etc/cron.d/$app"
2018-05-01 18:49:32 +02:00
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
#=================================================
2019-03-18 04:22:38 +01:00
ynh_print_info "Removing the dedicated system user"
# Delete a system user
2018-06-21 04:48:02 +02:00
ynh_system_user_delete $app
2019-03-18 04:22:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Removal of $app completed"