Browse Source

Merge pull request #1399 from smunilla/BZ1308440

a-o-i: Count nativeha hosts as "installed" for scaleup
Brenton Leanhardt 9 years ago
parent
commit
abba5eeb46
1 changed files with 8 additions and 4 deletions
  1. 8 4
      utils/src/ooinstall/cli_installer.py

+ 8 - 4
utils/src/ooinstall/cli_installer.py

@@ -526,10 +526,14 @@ Add new nodes here
 def get_installed_hosts(hosts, callback_facts):
     installed_hosts = []
     for host in hosts:
-        if(host.connect_to in callback_facts.keys()
-           and 'common' in callback_facts[host.connect_to].keys()
-           and callback_facts[host.connect_to]['common'].get('version', '')
-           and callback_facts[host.connect_to]['common'].get('version', '') != 'None'):
+        if host.connect_to in callback_facts.keys() and (
+            ('common' in callback_facts[host.connect_to].keys() and
+                  callback_facts[host.connect_to]['common'].get('version', '') and
+                  callback_facts[host.connect_to]['common'].get('version', '') != 'None') \
+            or
+            ('master' in callback_facts[host.connect_to].keys() and
+                 callback_facts[host.connect_to]['master'].get('cluster_method', '') == 'native')
+            ):
             installed_hosts.append(host)
     return installed_hosts