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

55 lines
1.5 KiB
Text
Raw Normal View History

2017-04-08 04:04:27 +02:00
#!/bin/bash
2018-05-01 18:49:32 +02:00
#=================================================
# 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_add_swap
source /usr/share/yunohost/helpers
2018-05-01 18:49:32 +02:00
#=================================================
2024-03-24 20:52:46 +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`)
2024-03-24 20:52:46 +01:00
if ynh_exec_warn_less yunohost service status "$app-web" >/dev/null; then
yunohost service remove "$app-web"
fi
2024-03-24 20:52:46 +01:00
if ynh_exec_warn_less yunohost service status "$app-sidekiq" >/dev/null; then
yunohost service remove "$app-sidekiq"
fi
2024-03-24 20:52:46 +01:00
if ynh_exec_warn_less yunohost service status "$app-streaming" >/dev/null; then
yunohost service remove "$app-streaming"
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