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

33 lines
1,006 B
Text
Raw Normal View History

2014-05-07 02:54:08 +02:00
#!/bin/bash
#=================================================
# GENERIC START
2019-02-27 23:52:47 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-27 23:52:47 +01:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-12-16 22:30:16 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2019-02-27 23:52:47 +01:00
2020-12-16 22:30:16 +01:00
# Remove the dedicated NGINX config
2019-02-27 23:52:47 +01:00
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2020-12-16 22:30:16 +01:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
2019-02-27 23:52:47 +01:00
2020-12-16 22:30:16 +01:00
# Remove the dedicated PHP-FPM config
2019-02-27 23:52:47 +01:00
ynh_remove_fpm_config
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last