ensure curl and wget are installed

This commit is contained in:
2025-11-03 13:17:14 +01:00
parent fe9ea628d8
commit 327dec9e2a

View File

@@ -138,6 +138,11 @@ if [[ -z "$zabbix_version" ]]; then printf "Could not determine latest Zabbix ve
printf "Using Zabbix version: %s\n\n" "$zabbix_version"
#
# Ensure curl and wget are installed
#
for tool in curl wget; do dpkg -s "$tool" &>/dev/null || apt install -y -qq "$tool" ; done
#
# Download and install the Zabbix repository
#