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:
authormboelen <michael@cisofy.com>2016-03-03 14:50:43 +0300
committermboelen <michael@cisofy.com>2016-03-03 14:50:43 +0300
commit2b95019b628043bb0718b9280c344fbcf5581768 (patch)
tree5176a5933fc26085a0bbee75d2fef2b6fb694a2b /include/helper_audit_dockerfile
parent09193d8ba95023f8af7db0649f3f31420c80e56a (diff)
Use proper variable for cURL
Diffstat (limited to 'include/helper_audit_dockerfile')
-rw-r--r--include/helper_audit_dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/helper_audit_dockerfile b/include/helper_audit_dockerfile
index 31390c25..268e9de4 100644
--- a/include/helper_audit_dockerfile
+++ b/include/helper_audit_dockerfile
@@ -126,7 +126,7 @@ InsertSection "Basics"
logtext "Checking usage of cURL"
FIND_CURL=`grep curl ${AUDIT_FILE}`
- if [ ! "${FIND_WGET}" = "" ]; then
+ if [ ! "${FIND_CURL}" = "" ]; then
Display --indent 4 --text "Download tool" --result "curl"
FILE_DOWNLOAD=1
fi