diff options
author | 2017-03-13 10:07:01 +0200 | |
---|---|---|
committer | 2017-03-13 10:07:01 +0200 | |
commit | c8d1f318e2d322626e401c9599ba75006d2e8e6c (patch) | |
tree | 01d1c56141b66452dffe3beb7d168d88994b927c /scripts/automation/trex_control_plane/stl/trex_stl_lib/utils | |
parent | 129a116bd9af059fcb9029881f6bdce457c00577 (diff) |
stl console: add "readonly" flag to connect
Change-Id: Iee3fc72efaa55cdbc457340b855982146167a859
Signed-off-by: Yaroslav Brustinov <ybrustin@cisco.com>
Diffstat (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib/utils')
-rwxr-xr-x | scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/parsing_opts.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/parsing_opts.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/parsing_opts.py index dabc7320..36893972 100755 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/parsing_opts.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/utils/parsing_opts.py @@ -30,6 +30,7 @@ STREAM_FROM_PATH_OR_FILE DURATION TIMEOUT FORCE +READONLY DRY_RUN XTERM TOTAL @@ -565,6 +566,11 @@ OPTIONS_DB = {MULTIPLIER: ArgumentPack(['-m', '--multiplier'], 'default': False, 'help': "Set if you want to stop active ports before appyling command."}), + READONLY: ArgumentPack(['-r'], + {'action': 'store_true', + 'dest': 'readonly', + 'help': 'Do not acquire ports, connect as read-only.'}), + REMOTE_FILE: ArgumentPack(['-r', '--remote'], {"action": "store_true", 'default': False, |