From fb34b56b137a4ab1b49382a62286c7b5d4fa6abc Mon Sep 17 00:00:00 2001 From: Tianhao He Date: Wed, 25 Jan 2017 00:32:12 -0800 Subject: [PATCH] switch -t and -v in setup_cli.py --- samples/vsphere/vcenter/setup/setup_cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/vsphere/vcenter/setup/setup_cli.py b/samples/vsphere/vcenter/setup/setup_cli.py index 4d6e6e94..43929edf 100644 --- a/samples/vsphere/vcenter/setup/setup_cli.py +++ b/samples/vsphere/vcenter/setup/setup_cli.py @@ -22,14 +22,14 @@ def build_arg_parser(): setup script -s, --testbed_setup - -v, --testbed_validate + -t, --testbed_validate -c, --testbed_cleanup -o, --iso_cleanup -e, --samples_setup -r, --samples -i, --samples_incremental -l, --samples_cleanup - -t, --skipverification + -v, --skipverification """ parser = argparse.ArgumentParser( @@ -41,7 +41,7 @@ def build_arg_parser(): 'trying to build in case there is ' 'an intermediate failure') - parser.add_argument('-v', '--testbed_validate', + parser.add_argument('-t', '--testbed_validate', action='store_true', help='Validate if the testbed is ready for the samples') @@ -70,7 +70,7 @@ def build_arg_parser(): action='store_true', help='Clean up after sample run. ') - parser.add_argument('-t', '--skipverification', + parser.add_argument('-v', '--skipverification', action='store_true', help='Verify server certificate when connecting to ' 'vcenter. ')