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.3 KiB
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2017-07-21 22:11:45 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Stop script if errors
set -u
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
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
ynh_script_progression --message="Removing logs..."
ynh_secure_remove --file=/var/lib/monitorix
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
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