2019-03-12 00:02:09 +01:00
|
|
|
#!/bin/bash
|
2015-09-27 23:55:31 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-09-27 23:37:04 +02:00
|
|
|
|
2019-03-12 00:02:09 +01:00
|
|
|
#=================================================
|
2023-06-03 21:25:44 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
2024-08-31 01:10:26 +02:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2024-08-31 01:10:26 +02:00
|
|
|
ynh_config_remove_nginx
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2024-08-31 01:10:26 +02:00
|
|
|
ynh_config_remove_phpfpm
|
2019-03-12 00:02:09 +01:00
|
|
|
|
2024-08-31 01:10:26 +02:00
|
|
|
ynh_config_remove_logrotate
|
2019-03-12 00:02:09 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 01:10:26 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|