2021-01-09 12:31:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
2024-02-25 12:50:51 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
|
|
|
then
|
2021-09-08 23:27:51 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
2022-10-05 00:36:46 +02:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
|
|
|
if ynh_exec_warn_less yunohost service status ${app}_ldap >/dev/null
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Removing ${app}_ldap service integration..." --weight=1
|
|
|
|
yunohost service remove ${app}_ldap
|
|
|
|
fi
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2022-10-05 00:36:46 +02:00
|
|
|
ynh_remove_systemd_config --service=${app}_ldap
|
2021-12-01 16:29:14 +01:00
|
|
|
|
2021-01-09 12:31:07 +01:00
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CLOSE A PORT
|
|
|
|
#=================================================
|
|
|
|
|
2021-09-08 23:27:51 +02:00
|
|
|
if yunohost firewall list | grep -q "\- 49152:65535"
|
2021-01-25 18:06:42 +01:00
|
|
|
then
|
2022-10-05 00:36:46 +02:00
|
|
|
ynh_script_progression --message="Closing UDP ports..." --weight=1
|
2021-09-08 23:27:51 +02:00
|
|
|
ynh_exec_warn_less yunohost firewall disallow UDP 49152:65535
|
2021-01-25 18:06:42 +01:00
|
|
|
fi
|
2021-01-13 21:58:03 +01:00
|
|
|
|
2021-01-09 12:31:07 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-09-08 23:27:51 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|