diff options
| author | Sascha Peilicke <saschpe@suse.de> | 2012-07-20 10:18:02 +0200 |
|---|---|---|
| committer | Sascha Peilicke <saschpe@suse.de> | 2012-07-20 10:18:23 +0200 |
| commit | 71a0caece87727e07bc34ae265dda58ca3e1e6d2 (patch) | |
| tree | 5e111214a0be28fe50e453c1ecf54068fb2f3cf0 /glanceclient/shell.py | |
| parent | 070f176abf0f3f592469be385c3c530de19eba16 (diff) | |
| download | python-glanceclient-71a0caece87727e07bc34ae265dda58ca3e1e6d2.tar.gz | |
Clarify usage of --insecure flag
Change-Id: If19a7aab92350fb68e447a0ffe8a97e079d762e4
Diffstat (limited to 'glanceclient/shell.py')
| -rw-r--r-- | glanceclient/shell.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/glanceclient/shell.py b/glanceclient/shell.py index 2b1b5d9..6c93c6c 100644 --- a/glanceclient/shell.py +++ b/glanceclient/shell.py @@ -55,7 +55,10 @@ class OpenStackImagesShell(object): parser.add_argument('--insecure', default=False, action='store_true', - help=argparse.SUPPRESS) + help="Explicitly allow glanceclient 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.") parser.add_argument('--timeout', default=600, |
