From 186a38cbc67cec061b524701f3a6ffac476399ec Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Fri, 20 Jul 2012 10:20:32 +0200 Subject: [PATCH] Clarify usage of --insecure flag Change-Id: Iad52212ea2ba7bfc93c597c23cc6314f9916edb9 --- novaclient/shell.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/novaclient/shell.py b/novaclient/shell.py index 7b9a65e26..ccc7cf6fc 100644 --- a/novaclient/shell.py +++ b/novaclient/shell.py @@ -141,7 +141,10 @@ class OpenStackComputeShell(object): parser.add_argument('--insecure', default=utils.env('NOVACLIENT_INSECURE', default=False), action='store_true', - help=argparse.SUPPRESS) + help="Explicitly allow novaclient to perform \"insecure\" " + "SSL (https) requests. The server's certificate will " + "not be verified against any certificate authorities. " + "This option should be used with caution.") # FIXME(dtroyer): The args below are here for diablo compatibility, # remove them in folsum cycle