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

25 lines
622 B
Text
Raw Normal View History

2016-08-21 01:03:46 +02:00
#!/bin/bash
2021-02-17 23:50:49 +01:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression "Removing system configurations related to $app..."
2021-02-17 23:50:49 +01:00
# Remove the dedicated NGINX config
ynh_config_remove_nginx
2021-02-17 23:50:49 +01:00
# Remove the dedicated PHP-FPM config
ynh_config_remove_phpfpm
2021-02-17 23:50:49 +01:00
# Remove a cron file
ynh_safe_rm "/etc/cron.d/$app"
2016-08-21 01:03:46 +02:00
2021-02-17 23:50:49 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2016-08-21 01:03:46 +02:00
ynh_script_progression "Removal of $app completed"