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

45 lines
1.4 KiB
Text
Raw Normal View History

2021-02-21 06:08:46 +01:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2021-07-07 16:42:05 +02:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
2023-12-26 09:42:33 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=10
2021-07-07 16:42:05 +02:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2024-07-14 18:15:20 +02:00
if ynh_exec_warn_less yunohost service status "$app" >/dev/null; then
yunohost service remove "$app"
2021-07-07 16:42:05 +02:00
fi
2024-07-14 18:15:20 +02:00
ynh_remove_systemd_config
if ynh_exec_warn_less yunohost service status "$app-ui" >/dev/null; then
yunohost service remove "$app-ui"
fi
2024-07-14 18:15:20 +02:00
ynh_remove_systemd_config --service="$app-ui"
2021-07-07 16:42:05 +02:00
2024-07-14 18:15:20 +02:00
if ynh_exec_warn_less yunohost service status "$app-pict-rs" >/dev/null; then
yunohost service remove "$app-pict-rs"
fi
ynh_remove_systemd_config --service="$app-pict-rs"
2021-07-07 16:42:05 +02:00
2021-08-22 14:29:38 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2021-02-21 06:08:46 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2022-02-04 00:26:58 +01:00
# Remove metapackage and its dependencies
ynh_remove_nodejs
2021-07-07 16:42:05 +02:00
2021-02-21 06:08:46 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Removal of $app completed" --last