From ad2f8affd82a69cce4af4952fc69e77bbb47cb92 Mon Sep 17 00:00:00 2001 From: Tortue Torche Date: Sun, 11 Aug 2019 02:02:29 -0400 Subject: [PATCH] Change --masked-variables flag default value to "false" --- psu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/psu b/psu index 9e91e20..ad5fcaf 100644 --- a/psu +++ b/psu @@ -44,7 +44,7 @@ main() { "insecure;-i;--insecure;Skip the host's SSL certificate verification, use at your own risk. Defaults to false" "verbose;-v;--verbose;Increase the verbosity of messages. Defaults to false" "debug;-d;--debug;Print as much information as possible to help diagnosing a malfunction. Defaults to false" - "masked-variables;-m;--masked-variables;In debug and/or verbose mode, the value of sensitive variables will be hidden, useful to avoid leaking passwords or tokens in your logs. Possible values: true|extended|false. Defaults to true" + "masked-variables;-m;--masked-variables;In debug and/or verbose mode, the value of sensitive variables will be hidden, useful to avoid leaking passwords or tokens in your logs. Possible values: true|extended|false. Defaults to false" "quiet;-q;--quiet;Display the minimum of information or nothing, UNIX/Linux friendly. Defaults to false" "strict;-t;--strict;Never updates an existent stack nor removes an inexistent one, and instead exits with an error. Defaults to false" "help;-h;--help;Display help message. To display help of a given action, run: 'psu --help'" @@ -386,7 +386,7 @@ set_globals() { DEBUG_MODE=${DEBUG_MODE:-"false"} QUIET_MODE=${QUIET_MODE:-"false"} STRICT_MODE=${STRICT_MODE:-"false"} - MASKED_VARIABLES=${MASKED_VARIABLES:-"true"} + MASKED_VARIABLES=${MASKED_VARIABLES:-"false"} # Set arguments through argument and options (overwrite envvars) inputs "$@"