Skip to content

Commit acaaca6

Browse files
debug: beta build changes;
1 parent 2f86479 commit acaaca6

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ SPLUNK_ANSIBLE_BRANCH ?= develop
77
SPLUNK_COMPOSE ?= cluster_absolute_unit.yaml
88
# Set Splunk version/build parameters here to define downstream URLs and file names
99
SPLUNK_PRODUCT := splunk
10-
SPLUNK_VERSION := 9.1.2
11-
SPLUNK_BUILD := b6b9c8185839
10+
SPLUNK_VERSION := 9.1.3
11+
SPLUNK_BUILD := 6a4ece53c9fe
1212
ifeq ($(shell arch), s390x)
1313
SPLUNK_ARCH = s390x
1414
else

splunk/common-files/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@ FROM ${SPLUNK_BASE_IMAGE}:latest as package
2121
ARG SPLUNK_BUILD_URL
2222
COPY splunk/common-files/make-minimal-exclude.py /tmp
2323
RUN 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}` \

0 commit comments

Comments
 (0)