2021-07-25 13:44:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-02-17 22:01:12 +01:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
2021-07-25 13:44:34 +02:00
|
|
|
#=================================================
|
2024-08-31 01:11:38 +02:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2021-07-25 13:44:34 +02:00
|
|
|
|
2024-08-31 01:11:38 +02:00
|
|
|
ynh_config_remove_nginx
|
2021-07-25 13:44:34 +02:00
|
|
|
|
2024-08-31 01:11:38 +02:00
|
|
|
ynh_config_remove_phpfpm
|
2021-07-25 13:44:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 01:11:38 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|