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