1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/codimd_ynh.git synced 2024-09-03 18:16:32 +02:00
codimd_ynh/scripts/remove

34 lines
923 B
Text
Raw Normal View History

2018-11-21 16:11:09 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-05-21 12:49:24 +02:00
source _common.sh
2018-11-21 16:11:09 +01:00
source /usr/share/yunohost/helpers
#=================================================
2024-06-18 08:48:34 +02:00
# REMOVE SYSTEM CONFIGURATIONS
2020-05-22 18:59:38 +02:00
#=================================================
2023-12-24 14:39:50 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2020-05-22 18:59:38 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service..." --weight=1
yunohost service remove $app
fi
2019-03-13 16:44:42 +01:00
ynh_remove_systemd_config
2018-11-21 16:11:09 +01:00
ynh_remove_nginx_config
2022-02-04 00:57:49 +01:00
ynh_remove_nodejs
2019-03-13 16:44:42 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-02-04 00:57:49 +01:00
ynh_script_progression --message="Removal of $app completed" --last