diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-14 11:01:40 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-03-14 11:01:40 -0400 |
commit | a0e7f19f9f7f423d8fe001a247ccf2c98d815d68 (patch) | |
tree | c058d0dc1486d01307d088912e7e296cb072f813 /roles/etcd/tasks | |
parent | 1b260a89cda950f919bfd62df17c786c3578bdfe (diff) | |
parent | 728dde0f940170588f8edd90c132b3f36b8efc86 (diff) | |
download | openshift-a0e7f19f9f7f423d8fe001a247ccf2c98d815d68.tar.gz openshift-a0e7f19f9f7f423d8fe001a247ccf2c98d815d68.tar.bz2 openshift-a0e7f19f9f7f423d8fe001a247ccf2c98d815d68.tar.xz openshift-a0e7f19f9f7f423d8fe001a247ccf2c98d815d68.zip |
Merge pull request #1596 from abutcher/containerized-bools
Ensure is_containerized is cast as bool in templates and facts.
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: |