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

36 lines
952 B
Text
Raw Normal View History

2015-02-16 23:19:37 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-02-16 23:19:37 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2015-02-16 23:19:37 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-07-19 08:38:46 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
# Remove the dedicated nginx config
ynh_remove_nginx_config
2021-07-19 08:38:46 +02:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
2020-04-09 10:42:49 +02:00
# Remove the app-specific logrotate config
2023-08-21 10:13:29 +02:00
#ynh_remove_logrotate
ynh_remove_fail2ban_config
2020-04-09 10:42:49 +02:00
# Remove a cron file
2020-04-09 10:42:49 +02:00
ynh_secure_remove --file="/etc/cron.d/$app"
#=================================================
# END OF SCRIPT
#=================================================
2021-07-19 08:54:40 +02:00
ynh_script_progression --message="Removal of $app completed" --last