1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/scripts/remove

28 lines
687 B
Text
Raw Permalink Normal View History

2013-11-24 20:51:24 +01:00
#!/bin/bash
2020-08-14 23:29:59 +02:00
source _common.sh
2017-08-27 14:42:28 +02:00
source /usr/share/yunohost/helpers
2013-11-24 20:51:24 +01:00
2017-08-27 14:42:28 +02:00
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
2017-08-27 14:42:28 +02:00
#=================================================
ynh_script_progression "Removing system configurations related to $app..."
2017-08-27 14:42:28 +02:00
if ynh_hide_warnings yunohost service status $app >/dev/null
2019-05-01 20:35:48 +02:00
then
ynh_script_progression "Removing $app service integration..."
2019-05-01 20:35:48 +02:00
yunohost service remove $app
fi
ynh_config_remove_systemd
2017-08-27 14:42:28 +02:00
ynh_config_remove_nginx
2017-08-27 14:42:28 +02:00
ynh_config_remove_phpfpm
2017-08-27 14:42:28 +02:00
#=================================================
2019-05-01 20:35:48 +02:00
# END OF SCRIPT
2017-08-27 14:42:28 +02:00
#=================================================
ynh_script_progression "Removal of $app completed"