Skip to content

Commit 7ee0cc3

Browse files
skip UF checksum;
1 parent acaaca6 commit 7ee0cc3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

uf/common-files/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,9 @@ ARG SPLUNK_BASE_IMAGE=base-debian-10
2020
FROM ${SPLUNK_BASE_IMAGE}:latest as package
2121
ARG SPLUNK_BUILD_URL
2222
ENV SPLUNK_HOME=/opt/splunkforwarder
23-
RUN echo "Downloading Splunk and validating the checksum at: ${SPLUNK_BUILD_URL}" \
23+
RUN echo "Downloading Splunk: ${SPLUNK_BUILD_URL}" \
2424
&& wget -qO /tmp/`basename ${SPLUNK_BUILD_URL}` ${SPLUNK_BUILD_URL} \
25-
&& wget -qO /tmp/splunk.tgz.sha512 ${SPLUNK_BUILD_URL}.sha512 \
2625
&& cd /tmp \
27-
&& echo "$(cat /tmp/splunk.tgz.sha512)" | sha512sum --check --status \
28-
&& rm /tmp/splunk.tgz.sha512 \
2926
&& tar -C /opt -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
3027
&& mv ${SPLUNK_HOME}/etc ${SPLUNK_HOME}-etc \
3128
&& mkdir -p ${SPLUNK_HOME}/etc ${SPLUNK_HOME}/var

0 commit comments

Comments
 (0)