We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5718a4c commit 22e8366Copy full SHA for 22e8366
CHANGELOG.md
@@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
### Security - In case of vulnerabilities.
19
-->
20
21
+## [v2.9.3] - 2023-06-23
22
+
23
+### Added
24
25
+- Added support for creating the temporary directory defined by `TMPDIR` if it doesn't exist.
26
27
## [v2.9.2] - 2023-06-22
28
29
### Changed
entrypoint.sh
@@ -9,6 +9,10 @@ if [ -r $DEFAULT ]; then
9
set +o allexport
10
fi
11
12
+if [ -n "${TMPDIR}" ] && [ ! -d "${TMPDIR}" ]; then
13
+ mkdir -p -m 3770 "${TMPDIR}"
14
+fi
15
16
# If the user has supplied only arguments append them to `fluentd` command
17
if [ "${1#-}" != "$1" ]; then
set -- fluentd "$@"
0 commit comments