| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- #!/bin/bash
- #=================================================
- # GENERIC START
- #=================================================
- # IMPORT GENERIC HELPERS
- #=================================================
- source _common.sh
- source /usr/share/yunohost/helpers
- #=================================================
- # LOAD SETTINGS
- #=================================================
- ynh_script_progression --message="Loading installation settings..."
- app=$YNH_APP_INSTANCE_NAME
- domain=$(ynh_app_setting_get --app=$app --key=domain)
- port=$(ynh_app_setting_get --app=$app --key=port)
- db_name=$(ynh_app_setting_get --app=$app --key=db_name)
- db_user=$db_name
- #=================================================
- # STANDARD REMOVE
- #=================================================
- # REMOVE SERVICE INTEGRATION IN YUNOHOST
- #=================================================
- # Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
- yunohost service remove snmpd
- yunohost service remove zabbix-server
- yunohost service remove zabbix-agent
- #=================================================
- # REMOVE THE MYSQL DATABASE
- #=================================================
- ynh_script_progression --message="Removing the MySQL database..."
- # Remove a database if it exists, along with the associated user
- ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
- #=================================================
- # REMOVE NGINX CONFIGURATION
- #=================================================
- ynh_script_progression --message="Removing NGINX web server configuration..."
- # Remove the dedicated NGINX config
- ynh_remove_nginx_config
- #=================================================
- # REMOVE PHP-FPM CONFIGURATION
- #=================================================
- ynh_script_progression --message="Removing PHP-FPM configuration..."
- # Remove the dedicated PHP-FPM config
- ynh_remove_fpm_config
- #=================================================
- # REMOVE DEPENDENCIES
- #=================================================
- ynh_script_progression --message="Removing dependencies..."
- timeout 5 systemctl stop zabbix-server || killall zabbix_server
- systemctl disable zabbix-server --quiet
- killall zabbix_server
- timeout 5 systemctl stop zabbix-agent || killall zabbix_agentd
- systemctl disable zabbix-agent --quiet
- killall zabbix_agentd
- #Remove config file detection
- delete_initZabbixConf
- DEBIAN_FRONTEND=noninteractive apt-get purge zabbix-release -y
- ynh_remove_app_dependencies
- #force removing if ynh_remove_app_dependencies not work (old zabbix version)
- for zabbix_pkg in $(apt list --installed | grep -Po "\K(zabbix-.*)(?=/)")
- do
- DEBIAN_FRONTEND=noninteractive apt-get purge --allow-change-held-packages "$zabbix_pkg" -y
- done
- #=================================================
- # SPECIFIC REMOVE
- #=================================================
- # REMOVE VARIOUS FILES
- #=================================================
- ynh_script_progression --message="Removing various files..."
- remove_zabbix_repo
- if [ -d /var/www/zabbix ] ;then ynh_secure_remove /var/www/zabbix;fi
- # Remove a directory securely
- if [ -d /etc/zabbix ] ;then ynh_secure_remove --file="/etc/zabbix";fi
- # Remove the log files
- if [ -d /var/log/zabbix ] ;then ynh_secure_remove --file="/var/log/zabbix";fi
- # Remove the pid/socket files
- if [ -d /run/zabbix ] ;then ynh_secure_remove --file="/run/zabbix";fi
- # Remove the sudoers file
- if [ -f /etc/sudoers.d/zabbix ] ;then ynh_secure_remove --file="/etc/sudoers.d/zabbix";fi
- #REMOVE NONFREE PART PATCH IF NEEDED (snmp-mibs-downloader (non-free) installed in version 1)
- nonfreepackagelist=$(dpkg-query -W -f='${Section}\t${Package}\n' | grep ^non-free)
- if [ $(echo $nonfreepackagelist | wc -l) -eq 1 ] && [ $(echo $nonfreepackagelist | grep -c "snmp-mibs-downloader") -eq 1 ] ;then
- ynh_print_info --message="Removing snmp-mibs-downloader (non-free package)"
- cp /var/lib/dpkg/status{,.$(date "+%m%d%y")}
- ynh_replace_string --match_string=" snmp-mibs-downloader," --replace_string="" --target_file=/var/lib/dpkg/status
- DEBIAN_FRONTEND=noninteractive apt purge snmp-mibs-downloader -y
- if [ -f /etc/apt/sources.list.d/non-free.list ];then
- ynh_secure_remove /etc/apt/sources.list.d/non-free.list
- fi
- fi
- #=================================================
- # GENERIC FINALIZATION
- #=================================================
- # REMOVE DEDICATED USER
- #=================================================
- ynh_script_progression --message="Removing the dedicated system user..."
- # Delete a system user
- ynh_system_user_delete --username=$app
- #=================================================
- # END OF SCRIPT
- #=================================================
- ynh_script_progression --message="Removal of $app completed"
|