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

26 lines
734 B
Text
Raw Normal View History

2014-05-07 02:54:08 +02:00
#!/bin/bash
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
#=================================================
2024-04-12 10:35:52 +02:00
# REMOVE SYSTEM CONFIGURATIONS
2019-02-27 23:52:47 +01:00
#=================================================
2024-04-12 10:35:52 +02:00
ynh_script_progression --message="Removing system configurations related to $app..." --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
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