1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monitorix_ynh.git synced 2024-09-03 19:46:06 +02:00
monitorix_ynh/scripts/remove

55 lines
1.6 KiB
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
2023-12-09 00:35:51 +01:00
source _common.sh
2020-11-17 23:37:38 +01:00
source /usr/share/yunohost/helpers
load_vars
2020-11-17 23:37:38 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
2023-12-09 00:35:51 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
2023-12-09 00:35:51 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
if ynh_hide_warnings yunohost service status "$app" >/dev/null
2023-12-09 00:35:51 +01:00
then
ynh_script_progression "Removing $app service integration..."
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 "Removing system configurations related to $app..."
2017-01-05 23:37:07 +01:00
ynh_systemctl --service="$app" --action="stop" --log_path="systemd" --timeout=15
2017-10-30 21:59:43 +01:00
ynh_safe_rm "$nginx_status_conf"
ynh_config_remove_nginx
ynh_config_remove_systemd
2023-01-22 03:09:34 +01:00
# Remove the app-specific logrotate config
ynh_config_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_safe_rm "$pool_file"
if _ynh_apt_package_is_installed"php$pool_version-fpm"; then
ynh_systemctl --service="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"
fi
2024-04-27 00:53:41 +02:00
if ynh_mysql_user_exists --user="$db_user"; then
ynh_mysql_drop_user "$db_user"
fi
_ynh_apt autoremove --purge monitorix
ynh_safe_rm "$install_dir"
ynh_script_progression "Removal of $app completed"