Use correct TEMP_FILE variable

This commit is contained in:
mboelen 2016-04-19 10:34:04 +02:00
parent 41589b14c2
commit 461bb84b62
1 changed files with 2 additions and 2 deletions

View File

@ -360,12 +360,12 @@
################################################################################
# Name : CreateTempFile
# Description : Creates a temporary file
# Returns : TEMPFILE
# Returns : TEMP_FILE
################################################################################
CreateTempFile()
{
TEMPFILE=""
TEMP_FILE=""
if [ "${OS}" = "AIX" ]; then
RANDOMSTRING1=`echo lynis-$(od -N4 -tu /dev/random | awk 'NR==1 {print $2} {}')`
TEMP_FILE="/tmp/${RANDOMSTRING1}"