Browse Source

Merge pull request #5577 from ashcrow/1496725

Automatic merge from submit-queue.

openshift_facts: coerce docker_use_system_container to bool

Use ``safe_get_bool()`` when reading ``docker_use_system_container`` to ensure
that ansible accepted inputs are turned into real boolean results.
    
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1496725

3.6 Backport: https://github.com/openshift/openshift-ansible/pull/5578
OpenShift Merge Robot 7 years ago
parent
commit
4c7d5c40c2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      roles/openshift_facts/library/openshift_facts.py

+ 3 - 1
roles/openshift_facts/library/openshift_facts.py

@@ -1669,7 +1669,9 @@ def set_container_facts_if_unset(facts):
     facts['common']['is_atomic'] = os.path.isfile('/run/ostree-booted')
     # If openshift_docker_use_system_container is set and is True ....
     if 'use_system_container' in list(facts['docker'].keys()):
-        if facts['docker']['use_system_container']:
+        # use safe_get_bool as the inventory variable may not be a
+        # valid boolean on it's own.
+        if safe_get_bool(facts['docker']['use_system_container']):
             # ... set the service name to container-engine
             facts['docker']['service_name'] = 'container-engine'