You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by zr...@apache.org on 2023/01/11 19:20:47 UTC

[trafficcontrol] branch master updated: Added package procsp-ng (#7285)

This is an automated email from the ASF dual-hosted git repository.

zrhoffman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new c8f8714321 Added package procsp-ng (#7285)
c8f8714321 is described below

commit c8f871432148f8ad971d25147d633e5787d4807c
Author: Rima Shah <22...@users.noreply.github.com>
AuthorDate: Wed Jan 11 12:20:41 2023 -0700

    Added package procsp-ng (#7285)
---
 infrastructure/cdn-in-a-box/cache/Dockerfile           | 1 +
 infrastructure/cdn-in-a-box/traffic_monitor/Dockerfile | 1 +
 infrastructure/cdn-in-a-box/traffic_ops/Dockerfile     | 1 +
 infrastructure/cdn-in-a-box/traffic_portal/Dockerfile  | 1 +
 infrastructure/cdn-in-a-box/traffic_router/Dockerfile  | 1 +
 infrastructure/cdn-in-a-box/traffic_stats/Dockerfile   | 3 ++-
 6 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/infrastructure/cdn-in-a-box/cache/Dockerfile b/infrastructure/cdn-in-a-box/cache/Dockerfile
index 4f70fb90a3..327cb6a3b7 100644
--- a/infrastructure/cdn-in-a-box/cache/Dockerfile
+++ b/infrastructure/cdn-in-a-box/cache/Dockerfile
@@ -67,6 +67,7 @@ RUN dnf -y install epel-release && \
         make                    \
         numactl-libs            \
         openssl                 \
+        procps-ng               \
         perl                    \
         tcl                     \
         xz                      \
diff --git a/infrastructure/cdn-in-a-box/traffic_monitor/Dockerfile b/infrastructure/cdn-in-a-box/traffic_monitor/Dockerfile
index c098aab009..980527149d 100644
--- a/infrastructure/cdn-in-a-box/traffic_monitor/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_monitor/Dockerfile
@@ -40,6 +40,7 @@ RUN dnf install -y epel-release && \
         gettext \
         bind-utils \
         openssl \
+        procps-ng \
         initscripts && \
     dnf clean all
 
diff --git a/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile b/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile
index a53ed2493d..6427f70e86 100644
--- a/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile
@@ -58,6 +58,7 @@ RUN set -o nounset -o errexit && \
 		net-tools            \
 		nmap-ncat            \
 		openssl              \
+		procps-ng            \
 		# rsync is used to copy certs in "Shared SSL certificate generation" step
 		rsync                \
 
diff --git a/infrastructure/cdn-in-a-box/traffic_portal/Dockerfile b/infrastructure/cdn-in-a-box/traffic_portal/Dockerfile
index cb4f0d01ed..2f34743aae 100644
--- a/infrastructure/cdn-in-a-box/traffic_portal/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_portal/Dockerfile
@@ -43,6 +43,7 @@ RUN dnf install -y epel-release && \
       jq \
       nodejs \
       openssl \
+      procps-ng \
       # find is required by to-access.sh
       findutils \
       gettext \
diff --git a/infrastructure/cdn-in-a-box/traffic_router/Dockerfile b/infrastructure/cdn-in-a-box/traffic_router/Dockerfile
index 35c53016eb..3a4df6ed67 100644
--- a/infrastructure/cdn-in-a-box/traffic_router/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_router/Dockerfile
@@ -45,6 +45,7 @@ RUN dnf -y install epel-release && \
         net-tools \
         iproute \
         nc \
+        procps-ng \
         wget \
         tar \
         unzip \
diff --git a/infrastructure/cdn-in-a-box/traffic_stats/Dockerfile b/infrastructure/cdn-in-a-box/traffic_stats/Dockerfile
index 434280bf11..fe9984975b 100644
--- a/infrastructure/cdn-in-a-box/traffic_stats/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_stats/Dockerfile
@@ -38,7 +38,8 @@ RUN dnf install -y epel-release && \
         findutils \
         gettext \
         bind-utils \
-        openssl && \
+        openssl \
+        procps-ng && \
     dnf clean all
 
 FROM trafficstats-dependencies AS trafficstats