2021-08-13 15:48:24 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-09-10 10:02:49 +03:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2021-08-13 15:48:24 +03:00
|
|
|
#=================================================
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_remove_nginx
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_remove_phpfpm
|
2021-08-13 15:48:24 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Removal of $app completed"
|