2017-01-05 23:37:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-01-31 16:07:43 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
2023-12-09 00:35:51 +01:00
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2018-01-31 16:07:43 +01:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
source _common.sh
|
2024-04-04 00:28:32 +02:00
|
|
|
source experimental_helper.sh
|
2020-11-17 23:37:38 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2024-04-04 00:28:32 +02:00
|
|
|
load_vars
|
2020-11-17 23:37:38 +01:00
|
|
|
|
2018-01-31 16:07:43 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2023-12-09 00:35:51 +01:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
2018-01-31 16:07:43 +01:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2024-04-27 00:53:41 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status "$app" >/dev/null
|
2023-12-09 00:35:51 +01:00
|
|
|
then
|
2024-04-04 00:28:32 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=3
|
|
|
|
yunohost service remove "$app"
|
2023-12-09 00:35:51 +01:00
|
|
|
fi
|
2017-01-05 23:37:07 +01:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
2017-01-05 23:37:07 +01:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
ynh_systemd_action --service_name="$app" --action="stop" --log_path="systemd" --timeout=15
|
2017-10-30 21:59:43 +01:00
|
|
|
|
2023-12-09 00:35:51 +01:00
|
|
|
ynh_secure_remove --file="$nginx_status_conf"
|
2018-05-07 23:08:03 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2023-01-22 03:09:34 +01:00
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2024-04-04 00:28:32 +02:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
for pool_dir_by_version in /etc/php/*; do
|
|
|
|
pool_version=$(echo "$pool_dir_by_version" | cut -d/ -f4)
|
|
|
|
pool_file="/etc/php/$pool_version/fpm/pool.d/${app}_status.conf"
|
|
|
|
ynh_secure_remove --file="$pool_file"
|
|
|
|
if ynh_package_is_installed --package="php$pool_version-fpm"; then
|
|
|
|
ynh_systemd_action --service_name="php$pool_version"-fpm.service --action=reload
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2024-04-27 00:53:41 +02:00
|
|
|
if ynh_psql_user_exists --user="$db_user"; then
|
|
|
|
ynh_psql_drop_user "$db_user"
|
2024-04-04 00:28:32 +02:00
|
|
|
fi
|
2024-04-27 00:53:41 +02:00
|
|
|
if ynh_mysql_user_exists --user="$db_user"; then
|
|
|
|
ynh_mysql_drop_user "$db_user"
|
2024-04-04 00:28:32 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
ynh_package_autopurge monitorix
|
|
|
|
ynh_secure_remove --file="$install_dir"
|
2019-06-07 23:09:30 +02:00
|
|
|
|
2024-04-21 12:03:55 +02:00
|
|
|
if [ "$YNH_APP_PURGE" -eq 1 ]; then
|
|
|
|
ynh_secure_remove --file=/var/log/"$app"
|
|
|
|
fi
|
|
|
|
|
2019-06-07 23:09:30 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|