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

54 lines
1.5 KiB
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2017-01-05 23:37:07 +01:00
# Import common cmd
source ./experimental_helper.sh
2017-01-05 23:37:07 +01:00
source ./_common.sh
2020-11-17 23:37:38 +01:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
ynh_script_progression --message="Loading installation settings..."
2017-01-05 23:37:07 +01:00
# Retrieve app settings
domain=$(ynh_app_setting_get --app $app --key domain)
2017-01-05 23:37:07 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
2017-01-05 23:37:07 +01:00
# Stop service
ynh_script_progression --message="Stoping services..."
2017-07-21 22:11:45 +02:00
systemctl stop monitorix.service
2017-01-05 23:37:07 +01:00
# Drop MySQL database and user
ynh_script_progression --message="Removing databases..."
2017-01-05 23:37:07 +01:00
dbname=$app
dbuser=$app
ynh_mysql_drop_db "$dbname" || true
ynh_mysql_drop_user "$dbuser" || true
2017-10-30 21:59:43 +01:00
# Remove data
2022-11-02 23:07:44 +01:00
ynh_print_info --message="Due of the backup core only feature the data directory in '/var/lib/monitorix' was not removed. It need to be removed manually to purge app user data."
2017-10-30 21:59:43 +01:00
# Remove nginx config
ynh_secure_remove --file="/etc/nginx/conf.d/monitorix_status.conf"
ynh_remove_nginx_config
2023-01-22 03:09:34 +01:00
# Remove init script
ynh_script_progression --message="Removing systemd units..."
ynh_remove_systemd_config
2017-01-05 23:37:07 +01:00
# Autoremove package
ynh_script_progression --message="Removing dependencies" --weight=10
2017-07-21 22:11:45 +02:00
ynh_remove_app_dependencies
2017-01-05 23:37:07 +01:00
ynh_package_autoremove monitorix
2017-07-21 22:11:45 +02:00
yunohost service remove monitorix
ynh_script_progression --message="Removal of $app completed" --last