fix: removed zabbix-proxy upgrade

This commit is contained in:
2025-09-26 10:30:37 +02:00
parent fd22bbe72b
commit e5aa060d94

View File

@@ -228,7 +228,7 @@ class ZabbixAgentTool:
def _upgrade_zabbix_package(self):
"""Upgrade Zabbix agent package based on distribution family"""
commands = {
'debian': ["sudo apt update", "sudo apt upgrade -y zabbix-agent* || sudo apt upgrade -y zabbix-proxy*"],
'debian': ["sudo apt update", "sudo apt upgrade -y zabbix-agent*"],
'rhel': ["sudo yum update -y zabbix-agent* || sudo dnf update -y zabbix-agent*"]
}