File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,9 @@ ARG SPLUNK_BASE_IMAGE=base-debian-10
20
20
FROM ${SPLUNK_BASE_IMAGE}:latest as package
21
21
ARG SPLUNK_BUILD_URL
22
22
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}" \
24
24
&& wget -qO /tmp/`basename ${SPLUNK_BUILD_URL}` ${SPLUNK_BUILD_URL} \
25
- && wget -qO /tmp/splunk.tgz.sha512 ${SPLUNK_BUILD_URL}.sha512 \
26
25
&& cd /tmp \
27
- && echo "$(cat /tmp/splunk.tgz.sha512)" | sha512sum --check --status \
28
- && rm /tmp/splunk.tgz.sha512 \
29
26
&& tar -C /opt -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
30
27
&& mv ${SPLUNK_HOME}/etc ${SPLUNK_HOME}-etc \
31
28
&& mkdir -p ${SPLUNK_HOME}/etc ${SPLUNK_HOME}/var
You can’t perform that action at this time.
0 commit comments