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