Skip to content

Commit b2c342c

Browse files
authored
Merge pull request #466 from splunk/release/739-master
Release/7.3.9
2 parents 951299b + 523f3a0 commit b2c342c

File tree

5 files changed

+31
-6
lines changed

5 files changed

+31
-6
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Welcome to the official Splunk repository of Dockerfiles for building Splunk Ent
88

99
----
1010

11+
> :warning: **DEPRECATION NOTICE**
12+
We will no longer be releasing Debian images on Docker Hub after Spring of 2021.
13+
14+
----
15+
1116
## Table of Contents
1217

1318
1. [Purpose](#purpose)

base/debian-10/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ cp apt_inst.cpython-37m-x86_64-linux-gnu.so apt_inst.so
5959
rm -rf /tmp/python3-apt
6060
# Install splunk-ansible dependencies
6161
cd /
62-
pip -q --no-cache-dir install wheel requests ansible jmespath --upgrade
62+
pip -q --no-cache-dir install six wheel requests ansible jmespath --upgrade
6363
# Remove tests packaged in python libs
6464
find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \;
6565
find /usr/lib/ -depth \( -type f -a -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) -exec rm -rf '{}' \;

base/debian-9/install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ ln -sf /usr/bin/python${PY_SHORT} /usr/bin/python
4848
ln -sf /usr/bin/pip${PY_SHORT} /usr/bin/pip
4949
# For ansible apt module
5050
cd /tmp
51-
apt-get download python3-apt=1.4.2
52-
dpkg -x python3-apt_1.4.2_amd64.deb python3-apt
53-
rm python3-apt_1.4.2_amd64.deb
51+
apt-get download python3-apt=1.4.3
52+
dpkg -x python3-apt_1.4.3_amd64.deb python3-apt
53+
rm python3-apt_1.4.3_amd64.deb
5454
cp -r /tmp/python3-apt/usr/lib/python3/dist-packages/* /usr/lib/python${PY_SHORT}/site-packages/
5555
cd /usr/lib/python${PY_SHORT}/site-packages/
5656
cp apt_pkg.cpython-35m-x86_64-linux-gnu.so apt_pkg.so
5757
cp apt_inst.cpython-35m-x86_64-linux-gnu.so apt_inst.so
5858
rm -rf /tmp/python3-apt
5959
# Install splunk-ansible dependencies
6060
cd /
61-
pip -q --no-cache-dir install wheel requests ansible jmespath --upgrade
61+
pip -q --no-cache-dir install six wheel requests ansible jmespath --upgrade
6262
# Remove tests packaged in python libs
6363
find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \;
6464
find /usr/lib/ -depth \( -type f -a -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) -exec rm -rf '{}' \;

base/redhat-8/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ln -sf /usr/bin/python${PY_SHORT} /usr/bin/python
4545
ln -sf /usr/bin/pip${PY_SHORT} /usr/bin/pip
4646
# Install splunk-ansible dependencies
4747
cd /
48-
pip -q --no-cache-dir install wheel requests ansible jmespath --upgrade
48+
pip -q --no-cache-dir install six wheel requests ansible jmespath --upgrade
4949
# Remove tests packaged in python libs
5050
find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \;
5151
find /usr/lib/ -depth \( -type f -a -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) -exec rm -rf '{}' \;

docs/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
## Changelog
22

3+
----
4+
5+
> :warning: **DEPRECATION NOTICE**
6+
We will no longer be releasing Debian images on Docker Hub after Spring of 2021.
7+
8+
----
9+
310
## Navigation
411

12+
* [8.1.2](#812)
513
* [8.1.1](#811)
614
* [8.1.0.1](#8101)
715
* [8.1.0](#810)
@@ -18,6 +26,7 @@
1826
* [8.0.2](#802)
1927
* [8.0.1](#801)
2028
* [8.0.0](#800)
29+
* [7.3.9](#739)
2130
* [7.3.8](#738)
2231
* [7.3.7](#737)
2332
* [7.3.6](#736)
@@ -326,6 +335,17 @@
326335

327336
---
328337

338+
## 7.3.9
339+
340+
#### What's New?
341+
* New Splunk Enterprise maintenance patch. For details, see [Fixed issues for 7.3.9](https://docs.splunk.com/Documentation/Splunk/7.3.9/ReleaseNotes/Fixedissues)
342+
* Bundling in changes to be consistent with the release of [8.1.2](#812)
343+
344+
#### Changes
345+
* See [8.1.2](#812) changes
346+
347+
---
348+
329349
## 7.3.8
330350

331351
#### What's New?

0 commit comments

Comments
 (0)