diff options
| author | Scott Dodson <sdodson@redhat.com> | 2018-01-19 10:44:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-19 10:44:14 -0500 |
| commit | 7411bdcabfce83e21273d32c67e88925dfccd2df (patch) | |
| tree | fee4a899334dee5653e374957a34ee4ef2696c63 | |
| parent | 7eee4914398913674df1128e8396cc8fb64cedb1 (diff) | |
| parent | 1ff834e55ac7cc8327d0a1798bec978df2f185aa (diff) | |
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.yml | 2 |
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 |
