1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tiddlywiki_ynh.git synced 2024-09-03 20:26:34 +02:00
tiddlywiki_ynh/scripts/remove

37 lines
1.1 KiB
Text
Raw Normal View History

2021-02-16 13:38:59 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-02-16 14:17:45 +01:00
source _common.sh
2021-02-16 13:38:59 +01:00
source /usr/share/yunohost/helpers
#=================================================
2023-03-12 22:29:28 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2021-02-16 14:17:45 +01:00
#=================================================
2023-03-12 22:29:28 +01:00
# REMOVE SYSTEMD SERVICE
2021-02-16 14:17:45 +01:00
#=================================================
2023-03-12 22:29:28 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2021-02-16 14:17:45 +01:00
2022-07-03 16:40:34 +02:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2021-02-16 14:17:45 +01:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
2022-07-03 16:40:34 +02:00
ynh_script_progression --message="Removing $app service integration..."
2021-02-16 14:17:45 +01:00
yunohost service remove $app
fi
ynh_remove_systemd_config
2022-07-03 16:40:34 +02:00
ynh_remove_nginx_config
2021-02-16 13:38:59 +01:00
2022-07-03 16:40:34 +02:00
ynh_remove_nodejs
2021-02-16 13:38:59 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Removal of $app completed"