1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/elasticsearch/busybox-mktemp.patch
2018-09-13 12:11:56 +00:00

13 lines
413 B
Diff

The script correctly detect that is not from coreutils,
and fallback using another syntax which doesn't work
with BusyBox.
--- a/bin/elasticsearch-env
+++ b/bin/elasticsearch-env
@@ -88,6 +88,6 @@
if [ $mktemp_coreutils -eq 0 ]; then
ES_TMPDIR=`mktemp -d --tmpdir "elasticsearch.XXXXXXXX"`
else
- ES_TMPDIR=`mktemp -d -t elasticsearch`
+ ES_TMPDIR=`mktemp -d -t elasticsearch.XXXXXXXX`
fi
fi