diff options
author | Tomas Touceda <chiiph@leap.se> | 2013-04-12 14:07:15 -0300 |
---|---|---|
committer | Tomas Touceda <chiiph@leap.se> | 2013-04-12 14:07:15 -0300 |
commit | 1fbf6db1276c5bca41c4cfbcc90818d9605c1938 (patch) | |
tree | ccf6dc5720654163a36155a2c6142e48dbef9811 /src/leap/util/leap_argparse.py | |
parent | 4e4268af42e6d0bbf38e6027ca36d1b9f1bdda68 (diff) |
Add --danger option to not validate the first hop of certificates
This is intended to be used while testing, not in production
Diffstat (limited to 'src/leap/util/leap_argparse.py')
-rw-r--r-- | src/leap/util/leap_argparse.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/util/leap_argparse.py b/src/leap/util/leap_argparse.py index 66268f6f..8300e4d8 100644 --- a/src/leap/util/leap_argparse.py +++ b/src/leap/util/leap_argparse.py @@ -29,6 +29,8 @@ Launches the LEAP Client""", epilog=epilog) parser.add_argument('-d', '--debug', action="store_true", help=("Launches client in debug mode, writing debug" "info to stdout")) + parser.add_argument('--danger', action="store_true", + help=("Bypasses the certificate check for bootstrap")) parser.add_argument('-l', '--logfile', metavar="LOG FILE", nargs='?', action="store", dest="log_file", #type=argparse.FileType('w'), |