2016-10-05 19:44:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
source _common.sh
|
2020-05-17 14:56:21 +02:00
|
|
|
source experimental_helpers/ynh_add_swap
|
2016-10-05 19:44:08 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
2023-09-14 15:23:23 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
2023-09-14 15:23:23 +02:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
ynh_remove_nginx_config
|
2018-02-12 21:53:49 +01:00
|
|
|
|
2018-02-12 16:07:11 +01:00
|
|
|
ynh_remove_fpm_config
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2020-05-17 14:56:21 +02:00
|
|
|
ynh_del_swap
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-12 01:55:21 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|