diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-03-14 10:17:44 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-03-14 10:17:44 -0400 |
commit | 728dde0f940170588f8edd90c132b3f36b8efc86 (patch) | |
tree | 0ce8787141d0c53cfa582946933b839504768ce7 /roles/etcd/tasks | |
parent | 7415f01e92f751a802db6a555dd02a56c01f590e (diff) | |
download | openshift-728dde0f940170588f8edd90c132b3f36b8efc86.tar.gz openshift-728dde0f940170588f8edd90c132b3f36b8efc86.tar.bz2 openshift-728dde0f940170588f8edd90c132b3f36b8efc86.tar.xz openshift-728dde0f940170588f8edd90c132b3f36b8efc86.zip |
Ensure is_containerized is cast as bool.
Diffstat (limited to 'roles/etcd/tasks')
-rw-r--r-- | roles/etcd/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/etcd/tasks/main.yml b/roles/etcd/tasks/main.yml index e72509c4d..0be042f7f 100644 --- a/roles/etcd/tasks/main.yml +++ b/roles/etcd/tasks/main.yml @@ -38,7 +38,7 @@ - name: Reload systemd units command: systemctl daemon-reload - when: openshift.common.is_containerized and ( install_etcd_result | changed ) + when: openshift.common.is_containerized | bool and ( install_etcd_result | changed ) - name: Validate permissions on the config dir file: |