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>2016-06-07 18:01:16 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-06-07 18:01:16 +0300
commit7ff4f3b1d36894720806cea0260007519e329871 (patch)
tree335cb06bb8e3ebdfe2ea78686f2845bf9bf95022 /include
parent138d1fdcd53bf159e8fe71f1c66d0ad48f370957 (diff)
Add upcoming profile option to choose between upload tools
Diffstat (limited to 'include')
-rw-r--r--include/profiles10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/profiles b/include/profiles
index ceae348f..fe44b060 100644
--- a/include/profiles
+++ b/include/profiles
@@ -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