Browse Source

Merge pull request #6755 from vrutkovs/packages-containerized

Use openshift_is_containerized instead of openshift_is_atomic when working with packages
Scott Dodson 7 năm trước cách đây
mục cha
commit
7411bdcabf
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      roles/etcd/tasks/auxiliary/drop_etcdctl.yml

+ 1 - 1
roles/etcd/tasks/auxiliary/drop_etcdctl.yml

@@ -1,7 +1,7 @@
 ---
 - name: Install etcd for etcdctl
   package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
-  when: not openshift_is_atomic | bool
+  when: not openshift_is_containerized | bool
   register: result
   until: result is succeeded