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

79 lines
2.6 KiB
Text
Raw Normal View History

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
#=================================================
# 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
ynh_script_progression --message="Removing $app-ui service integration..."
yunohost service remove $app-ui
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
2021-07-07 16:42:05 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
ynh_remove_systemd_config --service=$app-ui
2021-08-22 14:29:38 +02:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
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 NGINX CONFIGURATION
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
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 DEPENDENCIES
#=================================================
2023-05-26 16:48:51 +02:00
ynh_script_progression --message="Removing dependencies..." --weight=1
2022-02-04 00:26:58 +01:00
# Remove metapackage and its dependencies
ynh_remove_nodejs
ynh_secure_remove --file="/lib/libc.musl-x86_64.so.1"
2021-07-07 16:42:05 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE VARIOUS FILES
#=================================================
2022-09-20 01:10:16 +02:00
ynh_script_progression --message="Removing various files..." --weight=1
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