From 4d1f9b850b57785dadd296521f75a07c371791d8 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 20 May 2019 18:07:22 +0300 Subject: [PATCH 1/2] Fixed package name iptuils->iputils --- server-mysql/centos/Dockerfile | 2 +- server-pgsql/centos/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server-mysql/centos/Dockerfile b/server-mysql/centos/Dockerfile index 8c2a42558..9bb8923ac 100644 --- a/server-mysql/centos/Dockerfile +++ b/server-mysql/centos/Dockerfile @@ -122,7 +122,7 @@ RUN groupadd --system zabbix && \ yum ${YUM_FLAGS_PERSISTENT} install http://repo.zabbix.com/non-supported/rhel/7/x86_64/iksemel-1.4-2.el7.centos.x86_64.rpm \ http://repo.zabbix.com/non-supported/rhel/7/x86_64/fping-3.10-1.el7.x86_64.rpm && \ yum ${YUM_FLAGS_PERSISTENT} install \ - iptuils \ + iputils \ traceroute \ libcurl \ libxml2 \ diff --git a/server-pgsql/centos/Dockerfile b/server-pgsql/centos/Dockerfile index 2a312f694..4c850ee35 100644 --- a/server-pgsql/centos/Dockerfile +++ b/server-pgsql/centos/Dockerfile @@ -122,7 +122,7 @@ RUN groupadd --system zabbix && \ yum ${YUM_FLAGS_PERSISTENT} install http://repo.zabbix.com/non-supported/rhel/7/x86_64/iksemel-1.4-2.el7.centos.x86_64.rpm \ http://repo.zabbix.com/non-supported/rhel/7/x86_64/fping-3.10-1.el7.x86_64.rpm && \ yum ${YUM_FLAGS_PERSISTENT} install \ - iptuils \ + iputils \ traceroute \ libcurl \ libxml2 \ From bf65f07135053f9dcec2346dd9278f43cfbd3eae Mon Sep 17 00:00:00 2001 From: root Date: Mon, 20 May 2019 18:09:47 +0300 Subject: [PATCH 2/2] Added ping and traceroute to Appliances --- zabbix-appliance/centos/Dockerfile | 2 ++ zabbix-appliance/ubuntu/Dockerfile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/zabbix-appliance/centos/Dockerfile b/zabbix-appliance/centos/Dockerfile index b1b95d8ef..c0ec1929a 100644 --- a/zabbix-appliance/centos/Dockerfile +++ b/zabbix-appliance/centos/Dockerfile @@ -145,6 +145,8 @@ RUN groupadd --system zabbix && \ http://repo.zabbix.com/non-supported/rhel/7/x86_64/fping-3.10-1.el7.x86_64.rpm && \ yum ${YUM_FLAGS_PERSISTENT} install epel-release && \ yum ${YUM_FLAGS_PERSISTENT} install \ + iputils \ + traceroute \ curl \ OpenIPMI-libs \ dejavu-sans-fonts \ diff --git a/zabbix-appliance/ubuntu/Dockerfile b/zabbix-appliance/ubuntu/Dockerfile index 928110c6a..8dcff8116 100644 --- a/zabbix-appliance/ubuntu/Dockerfile +++ b/zabbix-appliance/ubuntu/Dockerfile @@ -160,6 +160,8 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ echo "deb http://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ + iputils-ping \ + traceroute \ curl \ fping \ libcurl4 \