Browse Source

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

Signed-off-by: Steve Milner <smilner@redhat.com>
Steve Milner 7 years ago
parent
commit
95489f6f04
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

@@ -1680,7 +1680,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'