diff options
Diffstat (limited to 'lib/python')
-rwxr-xr-x | lib/python/apex_python_utils.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/apex_python_utils.py b/lib/python/apex_python_utils.py index 4820fe4d..dcf483d1 100755 --- a/lib/python/apex_python_utils.py +++ b/lib/python/apex_python_utils.py @@ -130,9 +130,9 @@ def get_parser(): default='network-settings.yaml', dest='net_settings_file', help='path to network settings file') - net_settings.add_argument('-i', '--network-isolation', type=bool, + net_settings.add_argument('--flat', action='store_false', default=True, dest='network_isolation', - help='network isolation') + help='disable network isolation') net_settings.add_argument('-e', '--net-env-file', default="network-environment.yaml", dest='net_env_file', @@ -171,9 +171,9 @@ def get_parser(): default='network-settings.yaml', dest='net_settings_file', help='path to network settings file') - nic_template.add_argument('-i', '--network-isolation', type=bool, + nic_template.add_argument('--flat', action='store_false', default=True, dest='network_isolation', - help='network isolation') + help='disable network isolation') nic_template.add_argument('-n', '--enabled-networks', required=True, dest='enabled_networks', help='enabled network list') |