You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ra...@apache.org on 2021/02/23 23:10:13 UTC

[trafficcontrol] branch master updated: CDN in a Box Traffic Ops: Add iproute package for ip command (#5568)

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

rawlin 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 766e32c  CDN in a Box Traffic Ops: Add iproute package for ip command (#5568)
766e32c is described below

commit 766e32c89f53491d47e60d80a54bddaf5f961acd
Author: Zach Hoffman <zr...@apache.org>
AuthorDate: Tue Feb 23 16:09:57 2021 -0700

    CDN in a Box Traffic Ops: Add iproute package for ip command (#5568)
    
    * Sort packages
    
    * Add iproute package for ip command
---
 infrastructure/cdn-in-a-box/traffic_ops/Dockerfile | 38 ++++++++++++----------
 1 file changed, 20 insertions(+), 18 deletions(-)

diff --git a/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile b/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile
index 75d9426..9de708f 100644
--- a/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile
+++ b/infrastructure/cdn-in-a-box/traffic_ops/Dockerfile
@@ -43,24 +43,26 @@ RUN set -o nounset -o errexit && \
 	dnf -y $use_repo -- install postgresql96; \
 	dnf -y install epel-release; \
 	dnf -y $enable_repo install      \
-		jq              \
-		bind-utils      \
-		net-tools       \
-		gettext         \
-		perl-JSON-PP    \
-		perl-Crypt-ScryptKDF  \
-		mkisofs         \
-		isomd5sum       \
-		nmap-ncat       \
-		openssl         \
-		python3         \
-		golang          \
-		git             \
-		libidn-devel    \
-		libpcap-devel   \
-		perl-Digest-SHA1\
-		# Used to copy certs in "Shared SSL certificate generation" step
-		rsync;          \
+		bind-utils           \
+		gettext              \
+		git                  \
+		golang               \
+		# ip commands is used in set-to-ips-from-dns.sh
+		iproute              \
+		isomd5sum            \
+		jq                   \
+		libidn-devel         \
+		libpcap-devel        \
+		mkisofs              \
+		net-tools            \
+		nmap-ncat            \
+		openssl              \
+		perl-Crypt-ScryptKDF \
+		perl-Digest-SHA1     \
+		perl-JSON-PP         \
+		python3              \
+		# rsync is used to copy certs in "Shared SSL certificate generation" step
+		rsync;               \
 	dnf clean all
 
 EXPOSE 443