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

43 lines
1,006 B
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
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
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
#=================================================
# STANDARD REMOVE
#=================================================
2017-01-05 23:37:07 +01:00
# Stop service
2017-07-21 22:11:45 +02:00
systemctl stop monitorix.service
2017-01-05 23:37:07 +01:00
2017-07-21 22:11:45 +02:00
# Suppression de la configuration nginx
ynh_secure_remove "/etc/nginx/conf.d/$domain.d/$app.conf"
systemctl reload nginx.service
2017-01-05 23:37:07 +01:00
# Drop MySQL database and user
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_secure_remove /var/lib/monitorix
ynh_secure_remove /usr/share/yunohost/hooks/post_iptable_rules/50-$app
2017-10-30 21:59:43 +01:00
2017-01-05 23:37:07 +01:00
# Autoremove package
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