Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2017-02-28 22:17:49 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2017-02-28 22:17:49 +0300
commit5668f7bed1c43e93b6f526ccfe2b2d6002412922 (patch)
treee9426556f72e14a0db82eca256ab47fd4274acc8 /include/profiles
parentb95019da033ada876536e302f6d8f823b6a99b0c (diff)
Corrected variable for data uploads
Diffstat (limited to 'include/profiles')
-rw-r--r--include/profiles2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/profiles b/include/profiles
index 1916cf1d..58218012 100644
--- a/include/profiles
+++ b/include/profiles
@@ -357,7 +357,7 @@
# Colored output
upload)
SETTING_UPLOAD=no # default
- FIND=$(echo "${VALUE}" | egrep "^(1|true|yes)$") && DATA_UPLOAD=1
+ FIND=$(echo "${VALUE}" | egrep "^(1|true|yes)$") && UPLOAD_DATA=1
if [ ! -z "${FIND}" ]; then SETTING_UPLOAD=1; fi
Debug "Upload set to ${SETTING_UPLOAD}"
AddSetting "upload" "${SETTING_UPLOAD}" "Data upload after scanning"