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
|
|
|
|
2019-03-19 23:54:41 +01:00
|
|
|
source _common.sh
|
2024-02-22 19:45:40 +01:00
|
|
|
source ynh_install_ruby__2
|
|
|
|
source ynh_add_swap
|
2019-04-06 16:08:48 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-05-01 18:49:32 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-02-22 19:45:40 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2018-05-01 18:49:32 +02:00
|
|
|
#=================================================
|
2024-02-22 19:45:40 +01:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
2024-02-22 19:45:40 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2020-02-23 18:44:50 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status "$app-web" >/dev/null
|
2017-04-10 04:55:10 +02:00
|
|
|
then
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Removing $app-web service integration..." --weight=1
|
2018-05-01 18:49:32 +02:00
|
|
|
yunohost service remove "$app-web"
|
2017-04-10 04:55:10 +02:00
|
|
|
fi
|
|
|
|
|
2020-02-23 18:44:50 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status "$app-sidekiq" >/dev/null
|
2017-04-10 04:55:10 +02:00
|
|
|
then
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Removing $app-sidekiq service integration..." --weight=1
|
2018-05-01 18:49:32 +02:00
|
|
|
yunohost service remove "$app-sidekiq"
|
2017-04-10 04:55:10 +02:00
|
|
|
fi
|
|
|
|
|
2020-02-23 18:44:50 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status "$app-streaming" >/dev/null
|
2017-04-10 04:55:10 +02:00
|
|
|
then
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Removing $app-streaming service integration..." --weight=1
|
2018-05-01 18:49:32 +02:00
|
|
|
yunohost service remove "$app-streaming"
|
2017-04-10 04:55:10 +02:00
|
|
|
fi
|
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
# Remove the dedicated systemd config
|
2019-05-15 12:18:39 +02:00
|
|
|
ynh_remove_systemd_config --service="$app-web"
|
|
|
|
ynh_remove_systemd_config --service="$app-sidekiq"
|
|
|
|
ynh_remove_systemd_config --service="$app-streaming"
|
2018-05-01 18:49:32 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
# 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
|
|
|
|
2024-02-22 19:45:40 +01:00
|
|
|
# Remove a cron file
|
|
|
|
ynh_secure_remove --file="/etc/cron.d/$app"
|
2022-01-10 19:28:30 +01:00
|
|
|
|
2023-08-01 04:15:46 +02:00
|
|
|
# Remote logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2022-01-10 19:28:30 +01:00
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_ruby
|
|
|
|
ynh_remove_nodejs
|
2019-08-11 00:20:48 +02:00
|
|
|
|
|
|
|
# Remove swap
|
|
|
|
ynh_del_swap
|
2018-05-01 18:49:32 +02:00
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-02-22 19:45:40 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|