mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Add upcoming profile option to choose between upload tools
This commit is contained in:
parent
138d1fdcd5
commit
7ff4f3b1d3
1 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue