diff options
author | Tim Rozet <trozet@redhat.com> | 2016-08-09 15:37:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-09 15:37:11 +0000 |
commit | 9be56bb3c62fd07e5524c76256b964bb4988baf2 (patch) | |
tree | 8c578530b784283607a673d5e491fedb2f780411 /lib/python/apex_python_utils.py | |
parent | 5c9e135ccc5867ebf26bbe594cbd9964582a237d (diff) | |
parent | d5f0e0d3cd0ca88962c3f6d57d22ae27f2e3a5f1 (diff) |
Merge "Fix network_isolation argparse issue"
Diffstat (limited to 'lib/python/apex_python_utils.py')
-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 c548437d..8ea40f2c 100755 --- a/lib/python/apex_python_utils.py +++ b/lib/python/apex_python_utils.py @@ -131,9 +131,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', @@ -172,9 +172,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') |