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

34 lines
989 B
Text
Raw Normal View History

2021-03-07 19:51:22 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
ynh_script_progression "Removing system configurations related to $app..."
2021-03-07 19:51:22 +01:00
2022-02-04 01:28:16 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
if ynh_hide_warnings yunohost service status $app >/dev/null
2021-03-07 19:51:22 +01:00
then
ynh_script_progression "Removing $app service integration..."
2021-03-07 19:51:22 +01:00
yunohost service remove $app
fi
2022-02-04 01:28:16 +01:00
# Remove the app-specific logrotate config
ynh_config_remove_logrotate
2021-03-07 19:51:22 +01:00
# Remove the dedicated NGINX config
ynh_config_remove_nginx
2021-03-07 19:51:22 +01:00
# Remove the dedicated Fail2Ban config
ynh_config_remove_fail2ban
2021-03-07 19:51:22 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Removal of $app completed"