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

33 lines
936 B
Text
Raw Normal View History

2022-02-05 12:03:12 +01:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
2022-02-05 12:03:12 +01:00
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2022-02-05 12:03:12 +01: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
yunohost service remove "$app"
2022-02-05 12:03:12 +01:00
fi
ynh_remove_systemd_config
ynh_remove_nginx_config
2022-07-19 01:49:58 +02:00
ynh_remove_nodejs
ynh_secure_remove --file="$webircgateway_path"
2022-02-05 12:03:12 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last