summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2018-01-19 10:44:14 -0500
committerGitHub <noreply@github.com>2018-01-19 10:44:14 -0500
commit7411bdcabfce83e21273d32c67e88925dfccd2df (patch)
treefee4a899334dee5653e374957a34ee4ef2696c63
parent7eee4914398913674df1128e8396cc8fb64cedb1 (diff)
parent1ff834e55ac7cc8327d0a1798bec978df2f185aa (diff)
downloadopenshift-7411bdcabfce83e21273d32c67e88925dfccd2df.tar.gz
openshift-7411bdcabfce83e21273d32c67e88925dfccd2df.tar.bz2
openshift-7411bdcabfce83e21273d32c67e88925dfccd2df.tar.xz
openshift-7411bdcabfce83e21273d32c67e88925dfccd2df.zip
Merge pull request #6755 from vrutkovs/packages-containerized
Use openshift_is_containerized instead of openshift_is_atomic when working with packages
-rw-r--r--roles/etcd/tasks/auxiliary/drop_etcdctl.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/etcd/tasks/auxiliary/drop_etcdctl.yml b/roles/etcd/tasks/auxiliary/drop_etcdctl.yml
index 881a8c270..cab835e20 100644
--- a/roles/etcd/tasks/auxiliary/drop_etcdctl.yml
+++ b/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