From 3f403a5c3709bb90332e2b850deee03727007e7e Mon Sep 17 00:00:00 2001 From: Aditya Pingle Date: Wed, 24 Jan 2024 17:21:37 -0800 Subject: [PATCH] skip UF checksum; --- uf/common-files/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/uf/common-files/Dockerfile b/uf/common-files/Dockerfile index 785de0eb..04b47069 100644 --- a/uf/common-files/Dockerfile +++ b/uf/common-files/Dockerfile @@ -20,12 +20,9 @@ ARG SPLUNK_BASE_IMAGE=base-debian-10 FROM ${SPLUNK_BASE_IMAGE}:latest as package ARG SPLUNK_BUILD_URL ENV SPLUNK_HOME=/opt/splunkforwarder -RUN echo "Downloading Splunk and validating the checksum at: ${SPLUNK_BUILD_URL}" \ +RUN echo "Downloading Splunk: ${SPLUNK_BUILD_URL}" \ && wget -qO /tmp/`basename ${SPLUNK_BUILD_URL}` ${SPLUNK_BUILD_URL} \ - && wget -qO /tmp/splunk.tgz.sha512 ${SPLUNK_BUILD_URL}.sha512 \ && cd /tmp \ - && echo "$(cat /tmp/splunk.tgz.sha512)" | sha512sum --check --status \ - && rm /tmp/splunk.tgz.sha512 \ && tar -C /opt -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \ && mv ${SPLUNK_HOME}/etc ${SPLUNK_HOME}-etc \ && mkdir -p ${SPLUNK_HOME}/etc ${SPLUNK_HOME}/var