From 27808a64a48d4c77e14fb4dc99472ead5161e1b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Tue, 3 Oct 2017 16:48:17 +0200 Subject: [PATCH] iscsi: fix when condition MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit generate_crt|bool|default(false) won't apply the default value, this generate_crt|default(false)|bool will Signed-off-by: Sébastien Han --- roles/ceph-iscsi-gw/tasks/deploy_ssl_keys.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5