diff options
author | Nauman Ahad <nauman.ahad@xflowresearch.com> | 2016-06-06 13:33:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-06-06 13:33:03 +0000 |
commit | e883f8d8ef5ee497982e13ff8afcdef771dfcc7f (patch) | |
tree | d9b9c8ff62ca715db0d5d8f5812a012cede6a70b /func | |
parent | 957760c441002f7c7334171d1f9200107e03c651 (diff) | |
parent | fd5f3be2620112cf6466710e11cef5d566e6c924 (diff) |
Merge "Correct the wrong default public network name when install is 'fuel' and version is 8.0."
Diffstat (limited to 'func')
-rw-r--r-- | func/spawn_vm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/func/spawn_vm.py b/func/spawn_vm.py index 9d1d0bad..94aa424a 100644 --- a/func/spawn_vm.py +++ b/func/spawn_vm.py @@ -51,7 +51,7 @@ class SpawnVM(Env_setup): ''' print 'Getting Public Network' if installer_detected.lower() == 'fuel': - return 'net04_ext' + return 'admin_floating_net' if installer_detected.lower() == 'apex': return 'external' if installer_detected.lower() == 'compass': |