diff options
author | Samuel Munilla <smunilla@redhat.com> | 2016-08-25 09:20:17 -0400 |
---|---|---|
committer | Samuel Munilla <smunilla@redhat.com> | 2016-08-26 11:00:56 -0400 |
commit | 517f3390c14bc9bf570581a914fa64ac55c1ccd9 (patch) | |
tree | 38a2fecf60f29150cda12cdc38f4df73e47afc1d /roles/openshift_facts/library | |
parent | 2e975430061785e1acf2189e57ee7bfaee1a9411 (diff) | |
download | openshift-517f3390c14bc9bf570581a914fa64ac55c1ccd9.tar.gz openshift-517f3390c14bc9bf570581a914fa64ac55c1ccd9.tar.bz2 openshift-517f3390c14bc9bf570581a914fa64ac55c1ccd9.tar.xz openshift-517f3390c14bc9bf570581a914fa64ac55c1ccd9.zip |
Remove atomic check and cockpit.socket
Diffstat (limited to 'roles/openshift_facts/library')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 805f36cec..ebd799466 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -797,7 +797,7 @@ def set_deployment_facts_if_unset(facts): curr_disabled_features = set(facts['master']['disabled_features']) facts['master']['disabled_features'] = list(curr_disabled_features.union(openshift_features)) else: - if deployment_type == 'atomic-enterprise': + if facts['common']['deployment_subtype'] == 'registry': facts['master']['disabled_features'] = openshift_features if 'node' in facts: |