mirror of https://github.com/CISOfy/lynis.git
Adding new options for defining upload options and server
This commit is contained in:
parent
b829844cd8
commit
e3206dd343
|
@ -147,6 +147,16 @@
|
|||
if [ "${VALUE}" = "full" ]; then SCAN_TEST_LIGHT="YES"; SCAN_TEST_MEDIUM="YES"; SCAN_TEST_HEAVY="YES"; fi
|
||||
;;
|
||||
|
||||
# Options during upload of data
|
||||
upload_options)
|
||||
UPLOAD_OPTIONS="${VALUE}"
|
||||
;;
|
||||
|
||||
# Receiving system (IP address or hostname)
|
||||
upload_server)
|
||||
UPLOAD_SERVER="${VALUE}"
|
||||
;;
|
||||
|
||||
# Catch all bad options and bail out
|
||||
*)
|
||||
logtext "Unknown option ${OPTION} (with value: ${VALUE})"
|
||||
|
|
Loading…
Reference in New Issue