From: Sébastien Han Date: Tue, 3 Oct 2017 14:48:17 +0000 (+0200) Subject: iscsi: fix when condition X-Git-Tag: v3.0.0rc15~3^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=27808a64a48d4c77e14fb4dc99472ead5161e1b6;p=ceph-ansible.git iscsi: fix when condition generate_crt|bool|default(false) won't apply the default value, this generate_crt|default(false)|bool will Signed-off-by: Sébastien Han --- diff --git a/roles/ceph-iscsi-gw/tasks/deploy_ssl_keys.yml b/roles/ceph-iscsi-gw/tasks/deploy_ssl_keys.yml index 1846ee0b1..c4df5830f 100644 --- a/roles/ceph-iscsi-gw/tasks/deploy_ssl_keys.yml +++ b/roles/ceph-iscsi-gw/tasks/deploy_ssl_keys.yml @@ -36,4 +36,4 @@ - name: include generate_crt.yml include: generate_crt.yml - when: generate_crt|bool|default(false) + when: generate_crt|default(false)|bool