diff options
| -rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 8d7f12bc8..0ed85fc55 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -499,12 +499,12 @@ def set_dnsmasq_facts_if_unset(facts):      """      if 'common' in facts: -        if 'use_dnsmasq' not in facts['common'] and facts['common']['version_gte_3_2_or_1_2']: +        if 'use_dnsmasq' not in facts['common'] and safe_get_bool(facts['common']['version_gte_3_2_or_1_2']):              facts['common']['use_dnsmasq'] = True          else:              facts['common']['use_dnsmasq'] = False          if 'master' in facts and 'dns_port' not in facts['master']: -            if facts['common']['use_dnsmasq']: +            if safe_get_bool(facts['common']['use_dnsmasq']):                  facts['master']['dns_port'] = 8053              else:                  facts['master']['dns_port'] = 53  | 
