2025-04-25 06:24:48,926: INFO: Building opensdn-external-cassandra
2025-04-25 06:24:49,148: INFO: Building args: --network host --build-arg PIP_REPOSITORY=http://localhost:6667/pip/simple --build-arg CONTRAIL_REGISTRY=nexus.gz1.opensdn.io:5101 --build-arg CONTRAIL_CONTAINER_TAG=master-1_6_0_8-3 --build-arg SITE_MIRROR=http://nexus.gz1.opensdn.io/repository/external-web-cache --build-arg LINUX_DISTR_VER=7 --build-arg LINUX_DISTR=centos --build-arg GENERAL_EXTRA_RPMS="" --build-arg BASE_EXTRA_RPMS="" --build-arg YUM_ENABLE_REPOS="" --build-arg CONTAINER_NAME=opensdn-external-cassandra --build-arg UBUNTU_DISTR_VERSION=22.04 --build-arg UBUNTU_DISTR=ubuntu --build-arg VENDOR_NAME=OpenSDN-IO --build-arg VENDOR_DOMAIN=io.opensdn
Sending build context to Docker daemon 66.05 kB

Step 1/14 : ARG CONTRAIL_REGISTRY
Step 2/14 : ARG CONTRAIL_CONTAINER_TAG
Step 3/14 : FROM ${CONTRAIL_REGISTRY}/opensdn-general-base:${CONTRAIL_CONTAINER_TAG}
---> 95d4533d2ba0
Step 4/14 : ARG SITE_MIRROR
---> Running in bdc30e994b74
---> Removed intermediate container bdc30e994b74
---> e2f245d34643
Step 5/14 : ARG CONTAINER_NAME
---> Running in 0f03acf89b06
---> Removed intermediate container 0f03acf89b06
---> 7dd834ad8607
Step 6/14 : ENV SERVICE_NAME=cassandra     CONTAINER_NAME=$CONTAINER_NAME
---> Running in 867f8d913d16
---> Removed intermediate container 867f8d913d16
---> d194291c52f2
Step 7/14 : LABEL name=$CONTAINER_NAME       summary="Contrail Cassandra DB"       description="Configuration database for Contrail Controller."       $VENDOR_DOMAIN".service"=$SERVICE_NAME       $VENDOR_DOMAIN".container.name"=$CONTAINER_NAME
---> Running in ad389991258c
---> Removed intermediate container ad389991258c
---> a6cc85062a86
Step 8/14 : ENV CASSANDRA_HOME=/opt/cassandra     CASSANDRA_CONFIG=/etc/cassandra     CASSANDRA_LIB=/var/lib/cassandra     CASSANDRA_LOG=/var/log/cassandra     CASSANDRA_USER=cassandra     CASSANDRA_GROUP=cassandra     CASSANDRA_UID=2000     CASSANDRA_GID=2000     PATH="/opt/cassandra/bin:$PATH"     CASSANDRA_REAPER_CONFIG=/etc/cassandra-reaper
---> Running in 49be858f220c
---> Removed intermediate container 49be858f220c
---> 562d77fe2ecf
Step 9/14 : COPY *.sh /
---> d98345ac5028
Step 10/14 : RUN     CASSANDRA_VERSION=3.11.3 &&     set -ex && for item in `ls /__*` ; do mv $item /${item:3} ; done &&     yum install -y numactl which jemalloc &&     yum install -y --exclude="*slowdebug*" --exclude="*fastdebug*" "java-1.8.0-openjdk < 1:1.8.0_332" &&     groupadd -f -g ${CASSANDRA_GID} ${CASSANDRA_GROUP} && adduser -u ${CASSANDRA_UID} -M -g ${CASSANDRA_GROUP} ${CASSANDRA_USER} &&     usermod -a -G $CONTRAIL_GID ${CASSANDRA_USER} &&     source /functions.sh &&     download_package https://archive.apache.org dist/cassandra/$CASSANDRA_VERSION/apache-cassandra-$CASSANDRA_VERSION-bin.tar.gz apache-cassandra-$CASSANDRA_VERSION-bin.tar.gz &&     mkdir -p ${CASSANDRA_HOME} &&     tar -xzf apache-cassandra-$CASSANDRA_VERSION-bin.tar.gz -C ${CASSANDRA_HOME} --strip-components 1 &&     rm -rf  apache-cassandra-$CASSANDRA_VERSION-bin.tar.gz &&     mv "$CASSANDRA_HOME/conf" $CASSANDRA_CONFIG &&     ln -sT "$CASSANDRA_CONFIG" "$CASSANDRA_HOME/conf" &&     mkdir -p ${CASSANDRA_LIB} ${CASSANDRA_LOG} &&     chown -R ${CASSANDRA_USER}:${CASSANDRA_GROUP} ${CASSANDRA_CONFIG} ${CASSANDRA_LOG} ${CASSANDRA_LIB} &&     ln -sT ${CASSANDRA_LIB} "${CASSANDRA_HOME}/data" &&     ln -sT ${CASSANDRA_LOG} "${CASSANDRA_HOME}/logs" &&     rm -f /opt/cassandra/lib/libthrift-* &&     download_package https://github.com opensdn-io/tf-third-party-cache/blob/master/libthrift/libthrift-0.13.0.jar?raw=true /opt/cassandra/lib/libthrift-0.13.0.jar &&     rm -f /opt/cassandra/lib/netty-all-* &&     download_package https://repo1.maven.org maven2/io/netty/netty-all/4.1.39.Final/netty-all-4.1.39.Final.jar /opt/cassandra/lib/netty-all-4.1.39.Final.jar &&     rm -f /opt/cassandra/lib/logback-* &&     download_package https://repo1.maven.org maven2/ch/qos/logback/logback-classic/1.2.9/logback-classic-1.2.9.jar /opt/cassandra/lib/logback-classic-1.2.9.jar &&     download_package https://repo1.maven.org maven2/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar /opt/cassandra/lib/logback-core-1.2.9.jar &&     REAPER_VERSION=3.2.1 &&     REAPER_RPM_NAME=reaper-${REAPER_VERSION}-1.x86_64.rpm &&     download_package https://github.com thelastpickle/cassandra-reaper/releases/download/${REAPER_VERSION}/${REAPER_RPM_NAME} ${REAPER_RPM_NAME} &&     rpm -Uvh --nodeps --replacepkgs ${REAPER_RPM_NAME} &&     rm -f ${REAPER_RPM_NAME} &&     yum clean all -y &&     rm -rf /var/cache/yum &&     cassandra -v &&     cp ${CASSANDRA_CONFIG}/cassandra.yaml ${CASSANDRA_CONFIG}/cassandra.origin &&     cp ${CASSANDRA_CONFIG}/jvm.options ${CASSANDRA_CONFIG}/jvm.options.origin &&     cp ${CASSANDRA_REAPER_CONFIG}/cassandra-reaper.yaml ${CASSANDRA_REAPER_CONFIG}/cassandra-reaper.origin
---> Running in 10a94fad94ad
++ ls /__common.sh /__contrail-functions.sh
+ for item in '`ls /__*`'
+ mv /__common.sh /common.sh
+ for item in '`ls /__*`'
+ mv /__contrail-functions.sh /contrail-functions.sh
+ yum install -y numactl which jemalloc
Loaded plugins: fastestmirror, ovl
Determining fastest mirrors
Resolving Dependencies
--> Running transaction check
---> Package jemalloc.x86_64 0:3.6.0-1.el7 will be installed
---> Package numactl.x86_64 0:2.0.12-5.el7 will be installed
--> Processing Dependency: libnuma.so.1(libnuma_1.4)(64bit) for package: numactl-2.0.12-5.el7.x86_64
--> Processing Dependency: libnuma.so.1(libnuma_1.3)(64bit) for package: numactl-2.0.12-5.el7.x86_64
--> Processing Dependency: libnuma.so.1(libnuma_1.2)(64bit) for package: numactl-2.0.12-5.el7.x86_64
--> Processing Dependency: libnuma.so.1(libnuma_1.1)(64bit) for package: numactl-2.0.12-5.el7.x86_64
--> Processing Dependency: libnuma.so.1()(64bit) for package: numactl-2.0.12-5.el7.x86_64
---> Package which.x86_64 0:2.20-7.el7 will be installed
--> Running transaction check
---> Package numactl-libs.x86_64 0:2.0.12-5.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package  Arch   Version      Repository                                   Size
================================================================================
Installing:
jemalloc x86_64 3.6.0-1.el7  tf-mirrors.ci_repos_centos-openstack-queens 105 k
numactl  x86_64 2.0.12-5.el7 tf-mirrors.ci_repos_yum7-base                66 k
which    x86_64 2.20-7.el7   tf-mirrors.ci_repos_yum7-base                41 k
Installing for dependencies:
numactl-libs
x86_64 2.0.12-5.el7 tf-mirrors.ci_repos_yum7-base                30 k

Transaction Summary
================================================================================
Install  3 Packages (+1 Dependent package)

Total download size: 241 k
Installed size: 588 k
Downloading packages:
--------------------------------------------------------------------------------
Total                                              712 kB/s | 241 kB  00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : numactl-libs-2.0.12-5.el7.x86_64                             1/4
Installing : numactl-2.0.12-5.el7.x86_64                                  2/4
Installing : jemalloc-3.6.0-1.el7.x86_64                                  3/4
Installing : which-2.20-7.el7.x86_64                                      4/4
install-info: No such file or directory for /usr/share/info/which.info.gz
Verifying  : which-2.20-7.el7.x86_64                                      1/4
Verifying  : jemalloc-3.6.0-1.el7.x86_64                                  2/4
Verifying  : numactl-2.0.12-5.el7.x86_64                                  3/4
Verifying  : numactl-libs-2.0.12-5.el7.x86_64                             4/4

Installed:
jemalloc.x86_64 0:3.6.0-1.el7          numactl.x86_64 0:2.0.12-5.el7
which.x86_64 0:2.20-7.el7

Dependency Installed:
numactl-libs.x86_64 0:2.0.12-5.el7

Complete!
+ yum install -y '--exclude=*slowdebug*' '--exclude=*fastdebug*' 'java-1.8.0-openjdk < 1:1.8.0_332'
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package java-1.8.0-openjdk.x86_64 1:1.8.0.322.b06-1.el7_9 will be installed
--> Processing Dependency: java-1.8.0-openjdk-headless(x86-64) = 1:1.8.0.322.b06-1.el7_9 for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: xorg-x11-fonts-Type1 for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libpng15.so.15(PNG15_0)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libjvm.so(SUNWprivate_1.1)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libjava.so(SUNWprivate_1.1)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libasound.so.2(ALSA_0.9.0rc4)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libasound.so.2(ALSA_0.9)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libXcomposite(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: gtk2(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: fontconfig(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libpng15.so.15()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libjvm.so()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libjpeg.so.62()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libjava.so()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libgif.so.4()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libasound.so.2()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libXtst.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libXrender.so.1()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libXi.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libXext.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: libX11.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64
--> Running transaction check
---> Package alsa-lib.x86_64 0:1.1.8-1.el7 will be installed
---> Package fontconfig.x86_64 0:2.13.0-4.3.el7 will be installed
--> Processing Dependency: freetype >= 2.8-7 for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: freetype for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: fontpackages-filesystem for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: dejavu-sans-fonts for package: fontconfig-2.13.0-4.3.el7.x86_64
--> Processing Dependency: libfreetype.so.6()(64bit) for package: fontconfig-2.13.0-4.3.el7.x86_64
---> Package giflib.x86_64 0:4.1.6-9.el7 will be installed
--> Processing Dependency: libSM.so.6()(64bit) for package: giflib-4.1.6-9.el7.x86_64
--> Processing Dependency: libICE.so.6()(64bit) for package: giflib-4.1.6-9.el7.x86_64
---> Package gtk2.x86_64 0:2.24.31-1.el7 will be installed
--> Processing Dependency: pango >= 1.20.0-1 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libtiff >= 3.6.1 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXrandr >= 1.2.99.4-2 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: atk >= 1.29.4-2 for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: hicolor-icon-theme for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: gtk-update-icon-cache for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libpangoft2-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libpango-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libcups.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libcairo.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libatk-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXrandr.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXinerama.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXfixes.so.3()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXdamage.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
--> Processing Dependency: libXcursor.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64
---> Package java-1.8.0-openjdk-headless.x86_64 1:1.8.0.322.b06-1.el7_9 will be installed
--> Processing Dependency: tzdata-java >= 2021e for package: 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: copy-jdk-configs >= 3.3 for package: 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: pcsc-lite-libs(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: lksctp-tools(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_64
--> Processing Dependency: jpackage-utils for package: 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_64
---> Package libX11.x86_64 0:1.6.7-4.el7_9 will be installed
--> Processing Dependency: libX11-common >= 1.6.7-4.el7_9 for package: libX11-1.6.7-4.el7_9.x86_64
--> Processing Dependency: libxcb.so.1()(64bit) for package: libX11-1.6.7-4.el7_9.x86_64
---> Package libXcomposite.x86_64 0:0.4.4-4.1.el7 will be installed
---> Package libXext.x86_64 0:1.3.3-3.el7 will be installed
---> Package libXi.x86_64 0:1.7.9-1.el7 will be installed
---> Package libXrender.x86_64 0:0.9.10-1.el7 will be installed
---> Package libXtst.x86_64 0:1.2.3-1.el7 will be installed
---> Package libjpeg-turbo.x86_64 0:1.2.90-8.el7 will be installed
---> Package libpng.x86_64 2:1.5.13-8.el7 will be installed
---> Package xorg-x11-fonts-Type1.noarch 0:7.5-9.el7 will be installed
--> Processing Dependency: ttmkfdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Processing Dependency: ttmkfdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Processing Dependency: mkfontdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Processing Dependency: mkfontdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch
--> Running transaction check
---> Package atk.x86_64 0:2.28.1-2.el7 will be installed
---> Package cairo.x86_64 0:1.15.12-4.el7 will be installed
--> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.15.12-4.el7.x86_64
--> Processing Dependency: libGL.so.1()(64bit) for package: cairo-1.15.12-4.el7.x86_64
--> Processing Dependency: libEGL.so.1()(64bit) for package: cairo-1.15.12-4.el7.x86_64
---> Package copy-jdk-configs.noarch 0:3.3-11.el7_9 will be installed
---> Package cups-libs.x86_64 1:1.6.3-52.el7_9 will be installed
--> Processing Dependency: libavahi-common.so.3()(64bit) for package: 1:cups-libs-1.6.3-52.el7_9.x86_64
--> Processing Dependency: libavahi-client.so.3()(64bit) for package: 1:cups-libs-1.6.3-52.el7_9.x86_64
---> Package dejavu-sans-fonts.noarch 0:2.33-6.el7 will be installed
--> Processing Dependency: dejavu-fonts-common = 2.33-6.el7 for package: dejavu-sans-fonts-2.33-6.el7.noarch
---> Package fontpackages-filesystem.noarch 0:1.44-8.el7 will be installed
---> Package freetype.x86_64 0:2.8-14.el7_9.1 will be installed
---> Package gdk-pixbuf2.x86_64 0:2.36.12-3.el7 will be installed
--> Processing Dependency: libjasper.so.1()(64bit) for package: gdk-pixbuf2-2.36.12-3.el7.x86_64
---> Package gtk-update-icon-cache.x86_64 0:3.22.30-8.el7_9 will be installed
---> Package hicolor-icon-theme.noarch 0:0.12-7.el7 will be installed
---> Package javapackages-tools.noarch 0:3.4.1-11.el7 will be installed
--> Processing Dependency: python-javapackages = 3.4.1-11.el7 for package: javapackages-tools-3.4.1-11.el7.noarch
--> Processing Dependency: libxslt for package: javapackages-tools-3.4.1-11.el7.noarch
---> Package libICE.x86_64 0:1.0.9-9.el7 will be installed
---> Package libSM.x86_64 0:1.2.2-2.el7 will be installed
---> Package libX11-common.noarch 0:1.6.7-4.el7_9 will be installed
---> Package libXcursor.x86_64 0:1.1.15-1.el7 will be installed
---> Package libXdamage.x86_64 0:1.1.4-4.1.el7 will be installed
---> Package libXfixes.x86_64 0:5.0.3-1.el7 will be installed
---> Package libXinerama.x86_64 0:1.1.3-2.1.el7 will be installed
---> Package libXrandr.x86_64 0:1.5.1-2.el7 will be installed
---> Package libtiff.x86_64 0:4.0.3-35.el7 will be installed
--> Processing Dependency: libjbig.so.2.0()(64bit) for package: libtiff-4.0.3-35.el7.x86_64
---> Package libxcb.x86_64 0:1.13-1.el7 will be installed
--> Processing Dependency: libXau.so.6()(64bit) for package: libxcb-1.13-1.el7.x86_64
---> Package lksctp-tools.x86_64 0:1.0.17-2.el7 will be installed
---> Package pango.x86_64 0:1.42.4-4.el7_7 will be installed
--> Processing Dependency: libthai(x86-64) >= 0.1.9 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libXft(x86-64) >= 2.0.0 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: harfbuzz(x86-64) >= 1.4.2 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: fribidi(x86-64) >= 1.0 for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libharfbuzz.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libfribidi.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
--> Processing Dependency: libXft.so.2()(64bit) for package: pango-1.42.4-4.el7_7.x86_64
---> Package pcsc-lite-libs.x86_64 0:1.8.8-8.el7 will be installed
---> Package ttmkfdir.x86_64 0:3.0.9-42.el7 will be installed
---> Package tzdata-java.noarch 0:2024a-1.el7 will be installed
---> Package xorg-x11-font-utils.x86_64 1:7.5-21.el7 will be installed
--> Processing Dependency: libfontenc.so.1()(64bit) for package: 1:xorg-x11-font-utils-7.5-21.el7.x86_64
--> Running transaction check
---> Package avahi-libs.x86_64 0:0.6.31-20.el7 will be installed
---> Package dejavu-fonts-common.noarch 0:2.33-6.el7 will be installed
---> Package fribidi.x86_64 0:1.0.2-1.el7_7.1 will be installed
---> Package harfbuzz.x86_64 0:1.7.5-2.el7 will be installed
--> Processing Dependency: libgraphite2.so.3()(64bit) for package: harfbuzz-1.7.5-2.el7.x86_64
---> Package jasper-libs.x86_64 0:1.900.1-33.el7 will be installed
---> Package jbigkit-libs.x86_64 0:2.0-11.el7 will be installed
---> Package libXau.x86_64 0:1.0.8-2.1.el7 will be installed
---> Package libXft.x86_64 0:2.3.2-2.el7 will be installed
---> Package libfontenc.x86_64 0:1.1.3-3.el7 will be installed
---> Package libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed
--> Processing Dependency: libglvnd(x86-64) = 1:1.0.1-0.8.git5baa1e5.el7 for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64
--> Processing Dependency: mesa-libEGL(x86-64) >= 13.0.4-1 for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64
--> Processing Dependency: libGLdispatch.so.0()(64bit) for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64
---> Package libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed
--> Processing Dependency: mesa-libGL(x86-64) >= 13.0.4-1 for package: 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64
---> Package libthai.x86_64 0:0.1.14-9.el7 will be installed
---> Package libxslt.x86_64 0:1.1.28-6.el7 will be installed
---> Package pixman.x86_64 0:0.34.0-1.el7 will be installed
---> Package python-javapackages.noarch 0:3.4.1-11.el7 will be installed
--> Processing Dependency: python-lxml for package: python-javapackages-3.4.1-11.el7.noarch
--> Running transaction check
---> Package graphite2.x86_64 0:1.3.10-1.el7_3 will be installed
---> Package libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed
---> Package mesa-libEGL.x86_64 0:18.3.4-12.el7_9 will be installed
--> Processing Dependency: mesa-libgbm = 18.3.4-12.el7_9 for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
--> Processing Dependency: libxshmfence.so.1()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
--> Processing Dependency: libwayland-server.so.0()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
--> Processing Dependency: libwayland-client.so.0()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
--> Processing Dependency: libglapi.so.0()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
--> Processing Dependency: libgbm.so.1()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
--> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64
---> Package mesa-libGL.x86_64 0:18.3.4-12.el7_9 will be installed
--> Processing Dependency: libXxf86vm.so.1()(64bit) for package: mesa-libGL-18.3.4-12.el7_9.x86_64
---> Package python-lxml.x86_64 0:3.2.1-4.el7 will be installed
--> Running transaction check
---> Package libXxf86vm.x86_64 0:1.1.4-1.el7 will be installed
---> Package libdrm.x86_64 0:2.4.97-2.el7 will be installed
--> Processing Dependency: libpciaccess.so.0()(64bit) for package: libdrm-2.4.97-2.el7.x86_64
---> Package libwayland-client.x86_64 0:1.15.0-1.el7 will be installed
---> Package libwayland-server.x86_64 0:1.15.0-1.el7 will be installed
---> Package libxshmfence.x86_64 0:1.2-1.el7 will be installed
---> Package mesa-libgbm.x86_64 0:18.3.4-12.el7_9 will be installed
---> Package mesa-libglapi.x86_64 0:18.3.4-12.el7_9 will be installed
--> Running transaction check
---> Package libpciaccess.x86_64 0:0.14-1.el7 will be installed
--> Processing Dependency: hwdata for package: libpciaccess-0.14-1.el7.x86_64
--> Running transaction check
---> Package hwdata.x86_64 0:0.252-9.7.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package        Arch   Version           Repository                        Size
================================================================================
Installing:
java-1.8.0-openjdk
x86_64 1:1.8.0.322.b06-1.el7_9
tf-mirrors.ci_repos_yum7-updates 314 k
Installing for dependencies:
alsa-lib       x86_64 1.1.8-1.el7       tf-mirrors.ci_repos_yum7-base    425 k
atk            x86_64 2.28.1-2.el7      tf-mirrors.ci_repos_yum7-base    263 k
avahi-libs     x86_64 0.6.31-20.el7     tf-mirrors.ci_repos_yum7-base     62 k
cairo          x86_64 1.15.12-4.el7     tf-mirrors.ci_repos_yum7-base    741 k
copy-jdk-configs
noarch 3.3-11.el7_9      tf-mirrors.ci_repos_yum7-updates  22 k
cups-libs      x86_64 1:1.6.3-52.el7_9  tf-mirrors.ci_repos_yum7-updates 359 k
dejavu-fonts-common
noarch 2.33-6.el7        tf-mirrors.ci_repos_yum7-base     64 k
dejavu-sans-fonts
noarch 2.33-6.el7        tf-mirrors.ci_repos_yum7-base    1.4 M
fontconfig     x86_64 2.13.0-4.3.el7    tf-mirrors.ci_repos_yum7-base    254 k
fontpackages-filesystem
noarch 1.44-8.el7        tf-mirrors.ci_repos_yum7-base    9.9 k
freetype       x86_64 2.8-14.el7_9.1    tf-mirrors.ci_repos_yum7-updates 380 k
fribidi        x86_64 1.0.2-1.el7_7.1   tf-mirrors.ci_repos_yum7-base     79 k
gdk-pixbuf2    x86_64 2.36.12-3.el7     tf-mirrors.ci_repos_yum7-base    570 k
giflib         x86_64 4.1.6-9.el7       tf-mirrors.ci_repos_yum7-base     40 k
graphite2      x86_64 1.3.10-1.el7_3    tf-mirrors.ci_repos_yum7-base    115 k
gtk-update-icon-cache
x86_64 3.22.30-8.el7_9   tf-mirrors.ci_repos_yum7-updates  27 k
gtk2           x86_64 2.24.31-1.el7     tf-mirrors.ci_repos_yum7-base    3.4 M
harfbuzz       x86_64 1.7.5-2.el7       tf-mirrors.ci_repos_yum7-base    267 k
hicolor-icon-theme
noarch 0.12-7.el7        tf-mirrors.ci_repos_yum7-base     42 k
hwdata         x86_64 0.252-9.7.el7     tf-mirrors.ci_repos_yum7-base    2.5 M
jasper-libs    x86_64 1.900.1-33.el7    tf-mirrors.ci_repos_yum7-base    150 k
java-1.8.0-openjdk-headless
x86_64 1:1.8.0.322.b06-1.el7_9
tf-mirrors.ci_repos_yum7-updates  33 M
javapackages-tools
noarch 3.4.1-11.el7      tf-mirrors.ci_repos_yum7-base     73 k
jbigkit-libs   x86_64 2.0-11.el7        tf-mirrors.ci_repos_yum7-base     46 k
libICE         x86_64 1.0.9-9.el7       tf-mirrors.ci_repos_yum7-base     66 k
libSM          x86_64 1.2.2-2.el7       tf-mirrors.ci_repos_yum7-base     39 k
libX11         x86_64 1.6.7-4.el7_9     tf-mirrors.ci_repos_yum7-updates 607 k
libX11-common  noarch 1.6.7-4.el7_9     tf-mirrors.ci_repos_yum7-updates 164 k
libXau         x86_64 1.0.8-2.1.el7     tf-mirrors.ci_repos_yum7-base     29 k
libXcomposite  x86_64 0.4.4-4.1.el7     tf-mirrors.ci_repos_yum7-base     22 k
libXcursor     x86_64 1.1.15-1.el7      tf-mirrors.ci_repos_yum7-base     30 k
libXdamage     x86_64 1.1.4-4.1.el7     tf-mirrors.ci_repos_yum7-base     20 k
libXext        x86_64 1.3.3-3.el7       tf-mirrors.ci_repos_yum7-base     39 k
libXfixes      x86_64 5.0.3-1.el7       tf-mirrors.ci_repos_yum7-base     18 k
libXft         x86_64 2.3.2-2.el7       tf-mirrors.ci_repos_yum7-base     58 k
libXi          x86_64 1.7.9-1.el7       tf-mirrors.ci_repos_yum7-base     40 k
libXinerama    x86_64 1.1.3-2.1.el7     tf-mirrors.ci_repos_yum7-base     14 k
libXrandr      x86_64 1.5.1-2.el7       tf-mirrors.ci_repos_yum7-base     27 k
libXrender     x86_64 0.9.10-1.el7      tf-mirrors.ci_repos_yum7-base     26 k
libXtst        x86_64 1.2.3-1.el7       tf-mirrors.ci_repos_yum7-base     20 k
libXxf86vm     x86_64 1.1.4-1.el7       tf-mirrors.ci_repos_yum7-base     18 k
libdrm         x86_64 2.4.97-2.el7      tf-mirrors.ci_repos_yum7-base    151 k
libfontenc     x86_64 1.1.3-3.el7       tf-mirrors.ci_repos_yum7-base     31 k
libglvnd       x86_64 1:1.0.1-0.8.git5baa1e5.el7
tf-mirrors.ci_repos_yum7-base     89 k
libglvnd-egl   x86_64 1:1.0.1-0.8.git5baa1e5.el7
tf-mirrors.ci_repos_yum7-base     44 k
libglvnd-glx   x86_64 1:1.0.1-0.8.git5baa1e5.el7
tf-mirrors.ci_repos_yum7-base    125 k
libjpeg-turbo  x86_64 1.2.90-8.el7      tf-mirrors.ci_repos_yum7-base    135 k
libpciaccess   x86_64 0.14-1.el7        tf-mirrors.ci_repos_yum7-base     26 k
libpng         x86_64 2:1.5.13-8.el7    tf-mirrors.ci_repos_yum7-base    213 k
libthai        x86_64 0.1.14-9.el7      tf-mirrors.ci_repos_yum7-base    187 k
libtiff        x86_64 4.0.3-35.el7      tf-mirrors.ci_repos_yum7-base    172 k
libwayland-client
x86_64 1.15.0-1.el7      tf-mirrors.ci_repos_yum7-base     33 k
libwayland-server
x86_64 1.15.0-1.el7      tf-mirrors.ci_repos_yum7-base     39 k
libxcb         x86_64 1.13-1.el7        tf-mirrors.ci_repos_yum7-base    214 k
libxshmfence   x86_64 1.2-1.el7         tf-mirrors.ci_repos_yum7-base    7.2 k
libxslt        x86_64 1.1.28-6.el7      tf-mirrors.ci_repos_yum7-base    242 k
lksctp-tools   x86_64 1.0.17-2.el7      tf-mirrors.ci_repos_yum7-base     88 k
mesa-libEGL    x86_64 18.3.4-12.el7_9   tf-mirrors.ci_repos_yum7-updates 110 k
mesa-libGL     x86_64 18.3.4-12.el7_9   tf-mirrors.ci_repos_yum7-updates 166 k
mesa-libgbm    x86_64 18.3.4-12.el7_9   tf-mirrors.ci_repos_yum7-updates  39 k
mesa-libglapi  x86_64 18.3.4-12.el7_9   tf-mirrors.ci_repos_yum7-updates  46 k
pango          x86_64 1.42.4-4.el7_7    tf-mirrors.ci_repos_yum7-base    280 k
pcsc-lite-libs x86_64 1.8.8-8.el7       tf-mirrors.ci_repos_yum7-base     34 k
pixman         x86_64 0.34.0-1.el7      tf-mirrors.ci_repos_yum7-base    248 k
python-javapackages
noarch 3.4.1-11.el7      tf-mirrors.ci_repos_yum7-base     31 k
python-lxml    x86_64 3.2.1-4.el7       tf-mirrors.ci_repos_yum7-base    758 k
ttmkfdir       x86_64 3.0.9-42.el7      tf-mirrors.ci_repos_yum7-base     48 k
tzdata-java    noarch 2024a-1.el7       tf-mirrors.ci_repos_yum7-updates 187 k
xorg-x11-font-utils
x86_64 1:7.5-21.el7      tf-mirrors.ci_repos_yum7-base    104 k
xorg-x11-fonts-Type1
noarch 7.5-9.el7         tf-mirrors.ci_repos_yum7-base    521 k

Transaction Summary
================================================================================
Install  1 Package (+70 Dependent packages)

Total download size: 50 M
Installed size: 171 M
Downloading packages:
--------------------------------------------------------------------------------
Total                                               30 MB/s |  50 MB  00:01
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : libjpeg-turbo-1.2.90-8.el7.x86_64                           1/71
Installing : 2:libpng-1.5.13-8.el7.x86_64                                2/71
Installing : freetype-2.8-14.el7_9.1.x86_64                              3/71
Installing : mesa-libglapi-18.3.4-12.el7_9.x86_64                        4/71
Installing : libxshmfence-1.2-1.el7.x86_64                               5/71
Installing : 1:libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64                  6/71
Installing : fontpackages-filesystem-1.44-8.el7.noarch                   7/71
Installing : libICE-1.0.9-9.el7.x86_64                                   8/71
Installing : libwayland-server-1.15.0-1.el7.x86_64                       9/71
Installing : libxslt-1.1.28-6.el7.x86_64                                10/71
Installing : python-lxml-3.2.1-4.el7.x86_64                             11/71
Installing : python-javapackages-3.4.1-11.el7.noarch                    12/71
Installing : javapackages-tools-3.4.1-11.el7.noarch                     13/71
Installing : libSM-1.2.2-2.el7.x86_64                                   14/71
Installing : dejavu-fonts-common-2.33-6.el7.noarch                      15/71
Installing : dejavu-sans-fonts-2.33-6.el7.noarch                        16/71
Installing : fontconfig-2.13.0-4.3.el7.x86_64                           17/71
Installing : ttmkfdir-3.0.9-42.el7.x86_64                               18/71
Installing : jasper-libs-1.900.1-33.el7.x86_64                          19/71
Installing : pixman-0.34.0-1.el7.x86_64                                 20/71
Installing : libfontenc-1.1.3-3.el7.x86_64                              21/71
Installing : 1:xorg-x11-font-utils-7.5-21.el7.x86_64                    22/71
Installing : xorg-x11-fonts-Type1-7.5-9.el7.noarch                      23/71
Installing : atk-2.28.1-2.el7.x86_64                                    24/71
Installing : libthai-0.1.14-9.el7.x86_64                                25/71
Installing : avahi-libs-0.6.31-20.el7.x86_64                            26/71
Installing : 1:cups-libs-1.6.3-52.el7_9.x86_64                          27/71
Installing : libX11-common-1.6.7-4.el7_9.noarch                         28/71
Installing : graphite2-1.3.10-1.el7_3.x86_64                            29/71
Installing : harfbuzz-1.7.5-2.el7.x86_64                                30/71
Installing : libXau-1.0.8-2.1.el7.x86_64                                31/71
Installing : libxcb-1.13-1.el7.x86_64                                   32/71
Installing : libX11-1.6.7-4.el7_9.x86_64                                33/71
Installing : libXext-1.3.3-3.el7.x86_64                                 34/71
Installing : libXrender-0.9.10-1.el7.x86_64                             35/71
Installing : libXfixes-5.0.3-1.el7.x86_64                               36/71
Installing : libXi-1.7.9-1.el7.x86_64                                   37/71
Installing : libXdamage-1.1.4-4.1.el7.x86_64                            38/71
Installing : libXcomposite-0.4.4-4.1.el7.x86_64                         39/71
Installing : libXtst-1.2.3-1.el7.x86_64                                 40/71
Installing : libXcursor-1.1.15-1.el7.x86_64                             41/71
Installing : libXft-2.3.2-2.el7.x86_64                                  42/71
Installing : libXrandr-1.5.1-2.el7.x86_64                               43/71
Installing : libXinerama-1.1.3-2.1.el7.x86_64                           44/71
Installing : libXxf86vm-1.1.4-1.el7.x86_64                              45/71
Installing : giflib-4.1.6-9.el7.x86_64                                  46/71
Installing : copy-jdk-configs-3.3-11.el7_9.noarch                       47/71
Installing : tzdata-java-2024a-1.el7.noarch                             48/71
Installing : jbigkit-libs-2.0-11.el7.x86_64                             49/71
Installing : libtiff-4.0.3-35.el7.x86_64                                50/71
Installing : gdk-pixbuf2-2.36.12-3.el7.x86_64                           51/71
Installing : gtk-update-icon-cache-3.22.30-8.el7_9.x86_64               52/71
Installing : pcsc-lite-libs-1.8.8-8.el7.x86_64                          53/71
Installing : lksctp-tools-1.0.17-2.el7.x86_64                           54/71
Installing : 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_   55/71
Installing : fribidi-1.0.2-1.el7_7.1.x86_64                             56/71
Installing : libwayland-client-1.15.0-1.el7.x86_64                      57/71
Installing : alsa-lib-1.1.8-1.el7.x86_64                                58/71
Installing : hicolor-icon-theme-0.12-7.el7.noarch                       59/71
Installing : hwdata-0.252-9.7.el7.x86_64                                60/71
Installing : libpciaccess-0.14-1.el7.x86_64                             61/71
Installing : libdrm-2.4.97-2.el7.x86_64                                 62/71
Installing : mesa-libgbm-18.3.4-12.el7_9.x86_64                         63/71
Installing : 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64             64/71
Installing : mesa-libEGL-18.3.4-12.el7_9.x86_64                         65/71
Installing : mesa-libGL-18.3.4-12.el7_9.x86_64                          66/71
Installing : 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64             67/71
Installing : cairo-1.15.12-4.el7.x86_64                                 68/71
Installing : pango-1.42.4-4.el7_7.x86_64                                69/71
Installing : gtk2-2.24.31-1.el7.x86_64                                  70/71
Installing : 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64          71/71
Verifying  : libXext-1.3.3-3.el7.x86_64                                  1/71
Verifying  : libpciaccess-0.14-1.el7.x86_64                              2/71
Verifying  : libXi-1.7.9-1.el7.x86_64                                    3/71
Verifying  : libxslt-1.1.28-6.el7.x86_64                                 4/71
Verifying  : fontconfig-2.13.0-4.3.el7.x86_64                            5/71
Verifying  : giflib-4.1.6-9.el7.x86_64                                   6/71
Verifying  : libXinerama-1.1.3-2.1.el7.x86_64                            7/71
Verifying  : jasper-libs-1.900.1-33.el7.x86_64                           8/71
Verifying  : libXrender-0.9.10-1.el7.x86_64                              9/71
Verifying  : hwdata-0.252-9.7.el7.x86_64                                10/71
Verifying  : 1:xorg-x11-font-utils-7.5-21.el7.x86_64                    11/71
Verifying  : libXxf86vm-1.1.4-1.el7.x86_64                              12/71
Verifying  : mesa-libgbm-18.3.4-12.el7_9.x86_64                         13/71
Verifying  : libwayland-server-1.15.0-1.el7.x86_64                      14/71
Verifying  : libXcursor-1.1.15-1.el7.x86_64                             15/71
Verifying  : libICE-1.0.9-9.el7.x86_64                                  16/71
Verifying  : fontpackages-filesystem-1.44-8.el7.noarch                  17/71
Verifying  : ttmkfdir-3.0.9-42.el7.x86_64                               18/71
Verifying  : hicolor-icon-theme-0.12-7.el7.noarch                       19/71
Verifying  : alsa-lib-1.1.8-1.el7.x86_64                                20/71
Verifying  : libwayland-client-1.15.0-1.el7.x86_64                      21/71
Verifying  : mesa-libGL-18.3.4-12.el7_9.x86_64                          22/71
Verifying  : gdk-pixbuf2-2.36.12-3.el7.x86_64                           23/71
Verifying  : libXcomposite-0.4.4-4.1.el7.x86_64                         24/71
Verifying  : gtk2-2.24.31-1.el7.x86_64                                  25/71
Verifying  : libtiff-4.0.3-35.el7.x86_64                                26/71
Verifying  : python-javapackages-3.4.1-11.el7.noarch                    27/71
Verifying  : dejavu-fonts-common-2.33-6.el7.noarch                      28/71
Verifying  : pango-1.42.4-4.el7_7.x86_64                                29/71
Verifying  : fribidi-1.0.2-1.el7_7.1.x86_64                             30/71
Verifying  : libXtst-1.2.3-1.el7.x86_64                                 31/71
Verifying  : 1:libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64                 32/71
Verifying  : libxcb-1.13-1.el7.x86_64                                   33/71
Verifying  : libXft-2.3.2-2.el7.x86_64                                  34/71
Verifying  : libdrm-2.4.97-2.el7.x86_64                                 35/71
Verifying  : 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64             36/71
Verifying  : lksctp-tools-1.0.17-2.el7.x86_64                           37/71
Verifying  : libjpeg-turbo-1.2.90-8.el7.x86_64                          38/71
Verifying  : 1:cups-libs-1.6.3-52.el7_9.x86_64                          39/71
Verifying  : mesa-libEGL-18.3.4-12.el7_9.x86_64                         40/71
Verifying  : xorg-x11-fonts-Type1-7.5-9.el7.noarch                      41/71
Verifying  : harfbuzz-1.7.5-2.el7.x86_64                                42/71
Verifying  : mesa-libglapi-18.3.4-12.el7_9.x86_64                       43/71
Verifying  : 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64             44/71
Verifying  : dejavu-sans-fonts-2.33-6.el7.noarch                        45/71
Verifying  : libXrandr-1.5.1-2.el7.x86_64                               46/71
Verifying  : 2:libpng-1.5.13-8.el7.x86_64                               47/71
Verifying  : pcsc-lite-libs-1.8.8-8.el7.x86_64                          48/71
Verifying  : javapackages-tools-3.4.1-11.el7.noarch                     49/71
Verifying  : jbigkit-libs-2.0-11.el7.x86_64                             50/71
Verifying  : cairo-1.15.12-4.el7.x86_64                                 51/71
Verifying  : tzdata-java-2024a-1.el7.noarch                             52/71
Verifying  : copy-jdk-configs-3.3-11.el7_9.noarch                       53/71
Verifying  : libxshmfence-1.2-1.el7.x86_64                              54/71
Verifying  : libXau-1.0.8-2.1.el7.x86_64                                55/71
Verifying  : 1:java-1.8.0-openjdk-headless-1.8.0.322.b06-1.el7_9.x86_   56/71
Verifying  : gtk-update-icon-cache-3.22.30-8.el7_9.x86_64               57/71
Verifying  : libX11-1.6.7-4.el7_9.x86_64                                58/71
Verifying  : graphite2-1.3.10-1.el7_3.x86_64                            59/71
Verifying  : libX11-common-1.6.7-4.el7_9.noarch                         60/71
Verifying  : python-lxml-3.2.1-4.el7.x86_64                             61/71
Verifying  : avahi-libs-0.6.31-20.el7.x86_64                            62/71
Verifying  : libthai-0.1.14-9.el7.x86_64                                63/71
Verifying  : libXdamage-1.1.4-4.1.el7.x86_64                            64/71
Verifying  : libXfixes-5.0.3-1.el7.x86_64                               65/71
Verifying  : atk-2.28.1-2.el7.x86_64                                    66/71
Verifying  : libfontenc-1.1.3-3.el7.x86_64                              67/71
Verifying  : freetype-2.8-14.el7_9.1.x86_64                             68/71
Verifying  : 1:java-1.8.0-openjdk-1.8.0.322.b06-1.el7_9.x86_64          69/71
Verifying  : libSM-1.2.2-2.el7.x86_64                                   70/71
Verifying  : pixman-0.34.0-1.el7.x86_64                                 71/71

Installed:
java-1.8.0-openjdk.x86_64 1:1.8.0.322.b06-1.el7_9

Dependency Installed:
alsa-lib.x86_64 0:1.1.8-1.el7
atk.x86_64 0:2.28.1-2.el7
avahi-libs.x86_64 0:0.6.31-20.el7
cairo.x86_64 0:1.15.12-4.el7
copy-jdk-configs.noarch 0:3.3-11.el7_9
cups-libs.x86_64 1:1.6.3-52.el7_9
dejavu-fonts-common.noarch 0:2.33-6.el7
dejavu-sans-fonts.noarch 0:2.33-6.el7
fontconfig.x86_64 0:2.13.0-4.3.el7
fontpackages-filesystem.noarch 0:1.44-8.el7
freetype.x86_64 0:2.8-14.el7_9.1
fribidi.x86_64 0:1.0.2-1.el7_7.1
gdk-pixbuf2.x86_64 0:2.36.12-3.el7
giflib.x86_64 0:4.1.6-9.el7
graphite2.x86_64 0:1.3.10-1.el7_3
gtk-update-icon-cache.x86_64 0:3.22.30-8.el7_9
gtk2.x86_64 0:2.24.31-1.el7
harfbuzz.x86_64 0:1.7.5-2.el7
hicolor-icon-theme.noarch 0:0.12-7.el7
hwdata.x86_64 0:0.252-9.7.el7
jasper-libs.x86_64 0:1.900.1-33.el7
java-1.8.0-openjdk-headless.x86_64 1:1.8.0.322.b06-1.el7_9
javapackages-tools.noarch 0:3.4.1-11.el7
jbigkit-libs.x86_64 0:2.0-11.el7
libICE.x86_64 0:1.0.9-9.el7
libSM.x86_64 0:1.2.2-2.el7
libX11.x86_64 0:1.6.7-4.el7_9
libX11-common.noarch 0:1.6.7-4.el7_9
libXau.x86_64 0:1.0.8-2.1.el7
libXcomposite.x86_64 0:0.4.4-4.1.el7
libXcursor.x86_64 0:1.1.15-1.el7
libXdamage.x86_64 0:1.1.4-4.1.el7
libXext.x86_64 0:1.3.3-3.el7
libXfixes.x86_64 0:5.0.3-1.el7
libXft.x86_64 0:2.3.2-2.el7
libXi.x86_64 0:1.7.9-1.el7
libXinerama.x86_64 0:1.1.3-2.1.el7
libXrandr.x86_64 0:1.5.1-2.el7
libXrender.x86_64 0:0.9.10-1.el7
libXtst.x86_64 0:1.2.3-1.el7
libXxf86vm.x86_64 0:1.1.4-1.el7
libdrm.x86_64 0:2.4.97-2.el7
libfontenc.x86_64 0:1.1.3-3.el7
libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7
libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7
libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7
libjpeg-turbo.x86_64 0:1.2.90-8.el7
libpciaccess.x86_64 0:0.14-1.el7
libpng.x86_64 2:1.5.13-8.el7
libthai.x86_64 0:0.1.14-9.el7
libtiff.x86_64 0:4.0.3-35.el7
libwayland-client.x86_64 0:1.15.0-1.el7
libwayland-server.x86_64 0:1.15.0-1.el7
libxcb.x86_64 0:1.13-1.el7
libxshmfence.x86_64 0:1.2-1.el7
libxslt.x86_64 0:1.1.28-6.el7
lksctp-tools.x86_64 0:1.0.17-2.el7
mesa-libEGL.x86_64 0:18.3.4-12.el7_9
mesa-libGL.x86_64 0:18.3.4-12.el7_9
mesa-libgbm.x86_64 0:18.3.4-12.el7_9
mesa-libglapi.x86_64 0:18.3.4-12.el7_9
pango.x86_64 0:1.42.4-4.el7_7
pcsc-lite-libs.x86_64 0:1.8.8-8.el7
pixman.x86_64 0:0.34.0-1.el7
python-javapackages.noarch 0:3.4.1-11.el7
python-lxml.x86_64 0:3.2.1-4.el7
ttmkfdir.x86_64 0:3.0.9-42.el7
tzdata-java.noarch 0:2024a-1.el7
xorg-x11-font-utils.x86_64 1:7.5-21.el7
xorg-x11-fonts-Type1.noarch 0:7.5-9.el7

Complete!
+ groupadd -f -g 2000 cassandra
+ adduser -u 2000 -M -g cassandra cassandra
+ usermod -a -G 1999 cassandra
+ source /functions.sh
+ download_package https://archive.apache.org dist/cassandra/3.11.3/apache-cassandra-3.11.3-bin.tar.gz apache-cassandra-3.11.3-bin.tar.gz
+ local original_site=https://archive.apache.org
+ local site_path=dist/cassandra/3.11.3/apache-cassandra-3.11.3-bin.tar.gz
+ local output_name=apache-cassandra-3.11.3-bin.tar.gz
+ local add_opts=
+ '[' -n http://nexus.gz1.opensdn.io/repository/external-web-cache ']'
+ wget -nv --tries=3 -c -O apache-cassandra-3.11.3-bin.tar.gz http://nexus.gz1.opensdn.io/repository/external-web-cache/dist/cassandra/3.11.3/apache-cassandra-3.11.3-bin.tar.gz
2025-04-25 06:27:10 URL:http://nexus.gz1.opensdn.io/repository/external-web-cache/dist/cassandra/3.11.3/apache-cassandra-3.11.3-bin.tar.gz [37317433/37317433] -> "apache-cassandra-3.11.3-bin.tar.gz" [1]
+ '[' '!' -s apache-cassandra-3.11.3-bin.tar.gz ']'
+ mkdir -p /opt/cassandra
+ tar -xzf apache-cassandra-3.11.3-bin.tar.gz -C /opt/cassandra --strip-components 1
+ rm -rf apache-cassandra-3.11.3-bin.tar.gz
+ mv /opt/cassandra/conf /etc/cassandra
+ ln -sT /etc/cassandra /opt/cassandra/conf
+ mkdir -p /var/lib/cassandra /var/log/cassandra
+ chown -R cassandra:cassandra /etc/cassandra /var/log/cassandra /var/lib/cassandra
+ ln -sT /var/lib/cassandra /opt/cassandra/data
+ ln -sT /var/log/cassandra /opt/cassandra/logs
+ rm -f /opt/cassandra/lib/libthrift-0.9.2.jar
+ download_package https://github.com 'opensdn-io/tf-third-party-cache/blob/master/libthrift/libthrift-0.13.0.jar?raw=true' /opt/cassandra/lib/libthrift-0.13.0.jar
+ local original_site=https://github.com
+ local 'site_path=opensdn-io/tf-third-party-cache/blob/master/libthrift/libthrift-0.13.0.jar?raw=true'
+ local output_name=/opt/cassandra/lib/libthrift-0.13.0.jar
+ local add_opts=
+ '[' -n http://nexus.gz1.opensdn.io/repository/external-web-cache ']'
+ wget -nv --tries=3 -c -O /opt/cassandra/lib/libthrift-0.13.0.jar 'http://nexus.gz1.opensdn.io/repository/external-web-cache/opensdn-io/tf-third-party-cache/blob/master/libthrift/libthrift-0.13.0.jar?raw=true'
2025-04-25 06:27:12 URL:http://nexus.gz1.opensdn.io/repository/external-web-cache/opensdn-io/tf-third-party-cache/blob/master/libthrift/libthrift-0.13.0.jar?raw=true [246090/246090] -> "/opt/cassandra/lib/libthrift-0.13.0.jar" [1]
+ '[' '!' -s /opt/cassandra/lib/libthrift-0.13.0.jar ']'
+ rm -f /opt/cassandra/lib/netty-all-4.0.44.Final.jar
+ download_package https://repo1.maven.org maven2/io/netty/netty-all/4.1.39.Final/netty-all-4.1.39.Final.jar /opt/cassandra/lib/netty-all-4.1.39.Final.jar
+ local original_site=https://repo1.maven.org
+ local site_path=maven2/io/netty/netty-all/4.1.39.Final/netty-all-4.1.39.Final.jar
+ local output_name=/opt/cassandra/lib/netty-all-4.1.39.Final.jar
+ local add_opts=
+ '[' -n http://nexus.gz1.opensdn.io/repository/external-web-cache ']'
+ wget -nv --tries=3 -c -O /opt/cassandra/lib/netty-all-4.1.39.Final.jar http://nexus.gz1.opensdn.io/repository/external-web-cache/maven2/io/netty/netty-all/4.1.39.Final/netty-all-4.1.39.Final.jar
2025-04-25 06:27:12 URL:http://nexus.gz1.opensdn.io/repository/external-web-cache/maven2/io/netty/netty-all/4.1.39.Final/netty-all-4.1.39.Final.jar [4062498/4062498] -> "/opt/cassandra/lib/netty-all-4.1.39.Final.jar" [1]
+ '[' '!' -s /opt/cassandra/lib/netty-all-4.1.39.Final.jar ']'
+ rm -f /opt/cassandra/lib/logback-classic-1.1.3.jar /opt/cassandra/lib/logback-core-1.1.3.jar
+ download_package https://repo1.maven.org maven2/ch/qos/logback/logback-classic/1.2.9/logback-classic-1.2.9.jar /opt/cassandra/lib/logback-classic-1.2.9.jar
+ local original_site=https://repo1.maven.org
+ local site_path=maven2/ch/qos/logback/logback-classic/1.2.9/logback-classic-1.2.9.jar
+ local output_name=/opt/cassandra/lib/logback-classic-1.2.9.jar
+ local add_opts=
+ '[' -n http://nexus.gz1.opensdn.io/repository/external-web-cache ']'
+ wget -nv --tries=3 -c -O /opt/cassandra/lib/logback-classic-1.2.9.jar http://nexus.gz1.opensdn.io/repository/external-web-cache/maven2/ch/qos/logback/logback-classic/1.2.9/logback-classic-1.2.9.jar
2025-04-25 06:27:12 URL:http://nexus.gz1.opensdn.io/repository/external-web-cache/maven2/ch/qos/logback/logback-classic/1.2.9/logback-classic-1.2.9.jar [233855/233855] -> "/opt/cassandra/lib/logback-classic-1.2.9.jar" [1]
+ '[' '!' -s /opt/cassandra/lib/logback-classic-1.2.9.jar ']'
+ download_package https://repo1.maven.org maven2/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar /opt/cassandra/lib/logback-core-1.2.9.jar
+ local original_site=https://repo1.maven.org
+ local site_path=maven2/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar
+ local output_name=/opt/cassandra/lib/logback-core-1.2.9.jar
+ local add_opts=
+ '[' -n http://nexus.gz1.opensdn.io/repository/external-web-cache ']'
+ wget -nv --tries=3 -c -O /opt/cassandra/lib/logback-core-1.2.9.jar http://nexus.gz1.opensdn.io/repository/external-web-cache/maven2/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar
2025-04-25 06:27:12 URL:http://nexus.gz1.opensdn.io/repository/external-web-cache/maven2/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar [454201/454201] -> "/opt/cassandra/lib/logback-core-1.2.9.jar" [1]
+ '[' '!' -s /opt/cassandra/lib/logback-core-1.2.9.jar ']'
+ REAPER_VERSION=3.2.1
+ REAPER_RPM_NAME=reaper-3.2.1-1.x86_64.rpm
+ download_package https://github.com thelastpickle/cassandra-reaper/releases/download/3.2.1/reaper-3.2.1-1.x86_64.rpm reaper-3.2.1-1.x86_64.rpm
+ local original_site=https://github.com
+ local site_path=thelastpickle/cassandra-reaper/releases/download/3.2.1/reaper-3.2.1-1.x86_64.rpm
+ local output_name=reaper-3.2.1-1.x86_64.rpm
+ local add_opts=
+ '[' -n http://nexus.gz1.opensdn.io/repository/external-web-cache ']'
+ wget -nv --tries=3 -c -O reaper-3.2.1-1.x86_64.rpm http://nexus.gz1.opensdn.io/repository/external-web-cache/thelastpickle/cassandra-reaper/releases/download/3.2.1/reaper-3.2.1-1.x86_64.rpm
2025-04-25 06:27:12 URL:http://nexus.gz1.opensdn.io/repository/external-web-cache/thelastpickle/cassandra-reaper/releases/download/3.2.1/reaper-3.2.1-1.x86_64.rpm [58554501/58554501] -> "reaper-3.2.1-1.x86_64.rpm" [1]
+ '[' '!' -s reaper-3.2.1-1.x86_64.rpm ']'
+ rpm -Uvh --nodeps --replacepkgs reaper-3.2.1-1.x86_64.rpm
Preparing...                          ########################################
Updating / installing...
reaper-3.2.1-1                        ########################################
+ rm -f reaper-3.2.1-1.x86_64.rpm
+ yum clean all -y
Loaded plugins: fastestmirror, ovl
Cleaning repos: contrail tf-mirrors.ci_repos_centos-openstack-queens
: tf-mirrors.ci_repos_dockerrepo tf-mirrors.ci_repos_yum7-base
: tf-mirrors.ci_repos_yum7-centos-sclo-rh
: tf-mirrors.ci_repos_yum7-centosplus
: tf-mirrors.ci_repos_yum7-extras tf-mirrors.ci_repos_yum7-updates
: tpc
Cleaning up list of fastest mirrors
+ rm -rf /var/cache/yum
+ cassandra -v
3.11.3
+ cp /etc/cassandra/cassandra.yaml /etc/cassandra/cassandra.origin
+ cp /etc/cassandra/jvm.options /etc/cassandra/jvm.options.origin
+ cp /etc/cassandra-reaper/cassandra-reaper.yaml /etc/cassandra-reaper/cassandra-reaper.origin
 ---> Removed intermediate container 10a94fad94ad
---> 5b3a1b4610b2
Step 11/14 : VOLUME $CASSANDRA_LIB
---> Running in 46be04367a94
---> Removed intermediate container 46be04367a94
---> c95e638d6643
Step 12/14 : ENTRYPOINT ["/contrail-entrypoint.sh"]
---> Running in 567680843ef6
---> Removed intermediate container 567680843ef6
---> 31c81e47b120
Step 13/14 : EXPOSE 7000 7001 7199 9042 9160
---> Running in d1103e481903
---> Removed intermediate container d1103e481903
---> 07e115c962a3
Step 14/14 : CMD ["cassandra", "-f"]
---> Running in ef159c0852c3
---> Removed intermediate container ef159c0852c3
---> 752117683629
[Warning] One or more build-args [BASE_EXTRA_RPMS GENERAL_EXTRA_RPMS LINUX_DISTR LINUX_DISTR_VER PIP_REPOSITORY UBUNTU_DISTR UBUNTU_DISTR_VERSION VENDOR_DOMAIN VENDOR_NAME YUM_ENABLE_REPOS] were not consumed
Successfully built 752117683629
Successfully tagged nexus.gz1.opensdn.io:5101/opensdn-external-cassandra:master-1_6_0_8-3
2025-04-25 06:27:38,329: INFO: Docker build duration: 170 seconds
The push refers to repository [nexus.gz1.opensdn.io:5101/opensdn-external-cassandra]
e78bd7333728: Preparing
2fd998b9e4bf: Preparing
84ad43b5effe: Preparing
ae1206851e58: Preparing
e22a5b530b52: Preparing
ef871dc96615: Preparing
b818138cc350: Preparing
94b894498834: Preparing
174f56854903: Preparing
ae1206851e58: Waiting
e22a5b530b52: Waiting
ef871dc96615: Waiting
b818138cc350: Waiting
94b894498834: Waiting
174f56854903: Waiting
84ad43b5effe: Layer already exists
ae1206851e58: Layer already exists
e22a5b530b52: Layer already exists
ef871dc96615: Layer already exists
2fd998b9e4bf: Pushed
b818138cc350: Layer already exists
94b894498834: Layer already exists
174f56854903: Layer already exists
e78bd7333728: Pushed
master-1_6_0_8-3: digest: sha256:dfb182da98e819301d3dbdc5ed07c1714c38b4b28457d0ef247accb805e27bb9 size: 2201
2025-04-25 06:27:59,233: INFO: Building opensdn-external-cassandra finished successfully, duration: 191 seconds