mirror of
https://github.com/YunoHost-Apps/monitorix_ynh.git
synced 2024-09-03 19:46:06 +02:00
65 lines
2 KiB
Bash
Executable file
65 lines
2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source experimental_helper.sh
|
|
source /usr/share/yunohost/helpers
|
|
load_vars
|
|
|
|
#=================================================
|
|
# STANDARD REMOVE
|
|
#=================================================
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
#=================================================
|
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
|
if ynh_exec_warn_less yunohost service status "$app" >/dev/null
|
|
then
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=3
|
|
yunohost service remove "$app"
|
|
fi
|
|
|
|
#=================================================
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
|
|
|
ynh_systemd_action --service_name="$app" --action="stop" --log_path="systemd" --timeout=15
|
|
|
|
ynh_secure_remove --file="$nginx_status_conf"
|
|
ynh_remove_nginx_config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
# 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
|
|
|
|
if ynh_psql_user_exists --user="$db_user"; then
|
|
ynh_psql_drop_user "$db_user"
|
|
fi
|
|
if ynh_mysql_user_exists --user="$db_user"; then
|
|
ynh_mysql_drop_user "$db_user"
|
|
fi
|
|
|
|
ynh_package_autopurge monitorix
|
|
ynh_secure_remove --file="$install_dir"
|
|
|
|
if [ "$YNH_APP_PURGE" -eq 1 ]; then
|
|
ynh_secure_remove --file=/var/log/"$app"
|
|
fi
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|