2021-02-21 06:08:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
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`)
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
2022-09-20 01:10:16 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
2021-07-07 16:42:05 +02:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
2022-02-08 08:20:13 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status $app-ui >/dev/null
|
2021-07-07 16:42:05 +02:00
|
|
|
then
|
2023-12-26 09:42:33 +01:00
|
|
|
ynh_script_progression --message="Removing $app-ui service integration..." --weight=1
|
2021-07-07 16:42:05 +02:00
|
|
|
yunohost service remove $app-ui
|
|
|
|
fi
|
2023-06-20 00:20:36 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app-pict-rs >/dev/null
|
|
|
|
then
|
2023-12-26 09:42:33 +01:00
|
|
|
ynh_script_progression --message="Removing $app-pict-rs service integration..." --weight=1
|
2023-06-20 00:20:36 +02:00
|
|
|
yunohost service remove $app-pict-rs
|
|
|
|
fi
|
2021-07-07 16:42:05 +02:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
ynh_remove_systemd_config --service=$app-ui
|
2023-06-20 00:20:36 +02:00
|
|
|
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
|
2023-06-20 00:20:36 +02:00
|
|
|
#ynh_secure_remove --file="/lib/libc.musl-x86_64.so.1"
|
2022-02-04 00:26:58 +01:00
|
|
|
|
2021-07-07 16:42:05 +02:00
|
|
|
# Remove the log files
|
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
|
|
|
|
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
|