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 years ago
parent
commit
7411bdcabf
1 changed files with 1 additions and 1 deletions
  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