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

54 lines
1.8 KiB
Text
Raw Normal View History

2021-03-07 19:51:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
2022-02-04 01:28:16 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2021-03-07 19:51:22 +01:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service integration..." --weight=2
yunohost service remove $app
fi
#=================================================
2022-02-04 01:28:16 +01:00
# REMOVE LOGROTATE CONFIGURATION
2021-03-07 19:51:22 +01:00
#=================================================
2022-02-04 01:28:16 +01:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2021-03-07 19:51:22 +01:00
2022-02-04 01:28:16 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2021-03-07 19:51:22 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=2
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE FAIL2BAN CONFIGURATION
#=================================================
2022-02-04 01:28:16 +01:00
ynh_script_progression --message="Removing Fail2Ban configuration..." --weight=2
2021-03-07 19:51:22 +01:00
# Remove the dedicated Fail2Ban config
ynh_remove_fail2ban_config
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last