Browse Source

a-o-i: Set roles on standalone storage

Sets the roles appropriately when using a standalone storage host.

Fixes BZ#1353152
Samuel Munilla 8 years ago
parent
commit
8ed7f0c2df
1 changed files with 1 additions and 3 deletions
  1. 1 3
      utils/src/ooinstall/cli_installer.py

+ 1 - 3
utils/src/ooinstall/cli_installer.py

@@ -322,9 +322,7 @@ Note: Containerized storage hosts are not currently supported.
     else:
         host_props['connect_to'] = hostname_or_ip
         host_props['preconfigured'] = False
-        host_props['master'] = False
-        host_props['node'] = False
-        host_props['storage'] = True
+        host_props['roles'] = ['storage']
         storage = Host(**host_props)
         hosts.append(storage)