summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-03-18 23:57:13 +0200
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-03-18 23:57:13 +0200
commit249166805d7105a1f66b58dde6da15fb4ffc9524 (patch)
treec26e9b20c0bcf142c92c7947f1e3ba3d4ee62fb7 /netdata-installer.sh
parent1c62acefc3ce6eea531a8692ffd6245d0dc082cf (diff)
mktemp now uses busybox compatible file template names
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index f926f14f28..72eece0aac 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -1354,7 +1354,7 @@ if [ -t 2 ]
else
# we are headless
# create a temporary file for the log
- tmp=\$(mktemp /tmp/netdata-updater-log-XXXXXX.log)
+ tmp=\$(mktemp /tmp/netdata-updater.log.XXXXXX)
# open fd 3 and send it to tmp
exec 3>\${tmp}
fi