diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-26 17:07:10 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-29 09:52:00 -0400 |
commit | 1e53057c40fcc6648e4c69d83d0cebc33789a893 (patch) | |
tree | 60be0e1219bf8d7732ff1aae5231086e6de499e8 /roles/openshift_facts/library | |
parent | 6d74968b30f3dff2046ab50330c2de55ac103a8b (diff) | |
download | openshift-1e53057c40fcc6648e4c69d83d0cebc33789a893.tar.gz openshift-1e53057c40fcc6648e4c69d83d0cebc33789a893.tar.bz2 openshift-1e53057c40fcc6648e4c69d83d0cebc33789a893.tar.xz openshift-1e53057c40fcc6648e4c69d83d0cebc33789a893.zip |
First pass at systemd unit refactor
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 30e29787a..ba1e04bc5 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -1350,11 +1350,11 @@ class OpenShiftFacts(object): facts = set_identity_providers_if_unset(facts) facts = set_sdn_facts_if_unset(facts, self.system_facts) facts = set_deployment_facts_if_unset(facts) + facts = set_container_facts_if_unset(facts) facts = set_version_facts_if_unset(facts) facts = set_manageiq_facts_if_unset(facts) facts = set_aggregate_facts(facts) facts = set_etcd_facts_if_unset(facts) - facts = set_container_facts_if_unset(facts) if not safe_get_bool(facts['common']['is_containerized']): facts = set_installed_variant_rpm_facts(facts) return dict(openshift=facts) |