瀏覽代碼

Merge pull request #6755 from vrutkovs/packages-containerized

Use openshift_is_containerized instead of openshift_is_atomic when working with packages
Scott Dodson 7 年之前
父節點
當前提交
7411bdcabf
共有 1 個文件被更改,包括 1 次插入1 次删除
  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