1
0
mirror of https://github.com/CISOfy/lynis.git synced 2025-04-08 17:15:25 +02:00

Add upcoming profile option to choose between upload tools

This commit is contained in:
Michael Boelen 2016-06-07 17:01:16 +02:00
parent 138d1fdcd5
commit 7ff4f3b1d3

@ -279,6 +279,16 @@
UPLOAD_SERVER="${VALUE}"
;;
# Specify an alternative upload tool
upload-tool)
if [ -f "${VALUE}" ]; then UPLOAD_TOOL="${VALUE}"; fi
;;
# Specify arguments for an alternative upload tool
upload-tool-arguments)
UPLOAD_TOOL_ARGS="${VALUE}"
;;
# Verbose output (--verbose)
verbose)
FIND=`echo "${VALUE}" | egrep "^(1|true|yes)"` && VERBOSE=1