Browse Source

Bug 1323123 - upgrade failed to containerized OSE on RHEL Host without ose3.2 repo

Brenton Leanhardt 9 năm trước cách đây
mục cha
commit
cca99e30e9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      roles/openshift_facts/tasks/main.yml

+ 1 - 1
roles/openshift_facts/tasks/main.yml

@@ -15,7 +15,7 @@
 - set_fact:
     l_is_atomic: "{{ ostree_output.rc == 0 }}"
 - set_fact:
-    l_is_containerized: "{{ l_is_atomic or containerized | default(false) | bool }}"
+    l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
 
 - name: Ensure PyYaml is installed
   action: "{{ ansible_pkg_mgr }} name=PyYAML state=present"