File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ SPLUNK_ANSIBLE_BRANCH ?= develop
77SPLUNK_COMPOSE ?= cluster_absolute_unit.yaml
88# Set Splunk version/build parameters here to define downstream URLs and file names
99SPLUNK_PRODUCT := splunk
10- SPLUNK_VERSION := 9.1.2
11- SPLUNK_BUILD := b6b9c8185839
10+ SPLUNK_VERSION := 9.1.3
11+ SPLUNK_BUILD := 6a4ece53c9fe
1212ifeq ($(shell arch) , s390x)
1313 SPLUNK_ARCH = s390x
1414else
Original file line number Diff line number Diff line change @@ -21,12 +21,9 @@ FROM ${SPLUNK_BASE_IMAGE}:latest as package
2121ARG SPLUNK_BUILD_URL
2222COPY splunk/common-files/make-minimal-exclude.py /tmp
2323RUN python /tmp/make-minimal-exclude.py ${SPLUNK_BUILD_URL} > /tmp/splunk-minimal-exclude.list \
24- && echo "Downloading Splunk and validating the checksum at : ${SPLUNK_BUILD_URL}" \
24+ && echo "Downloading Splunk: ${SPLUNK_BUILD_URL}" \
2525 && wget -qO /tmp/`basename ${SPLUNK_BUILD_URL}` ${SPLUNK_BUILD_URL} \
26- && wget -qO /tmp/splunk.tgz.sha512 ${SPLUNK_BUILD_URL}.sha512 \
2726 && cd /tmp \
28- && echo "$(cat /tmp/splunk.tgz.sha512)" | sha512sum --check --status \
29- && rm /tmp/splunk.tgz.sha512 \
3027 && mkdir -p /minimal/splunk/var /extras/splunk/var \
3128 && tar -C /minimal/splunk --strip 1 --exclude-from=/tmp/splunk-minimal-exclude.list -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
3229 && tar -C /extras/splunk --strip 1 --wildcards --files-from=/tmp/splunk-minimal-exclude.list -zxf /tmp/`basename ${SPLUNK_BUILD_URL}` \
You can’t perform that action at this time.
0 commit comments