From 115b457731f1b95bb7d8ab7a83351b974fc26b4b Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Tue, 25 Jun 2019 17:11:28 +0200 Subject: [PATCH] nfs: add missing | bool filters To address this warning: ``` [DEPRECATION WARNING]: evaluating nfs_ganesha_dev as a bare variable, this behaviour will go away and you might need to add |bool to the expression in the future ``` Signed-off-by: Guillaume Abrioux (cherry picked from commit 2b9fb377a88d0ad5d888e57ee1929390bcb873c0) --- .../ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml b/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml index 8d80a036b..a08d9c15a 100644 --- a/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml +++ b/roles/ceph-nfs/tasks/pre_requisite_non_container_red_hat.yml @@ -11,7 +11,7 @@ gpgkey: "{{ ceph_stable_key }}" baseurl: "{{ ceph_mirror }}/nfs-ganesha/rpm-{{ nfs_ganesha_stable_branch }}/{{ ceph_release }}/$basearch" when: - - nfs_ganesha_stable + - nfs_ganesha_stable | bool - ceph_repository == 'community' - name: red hat based systems - dev repo related tasks @@ -30,7 +30,7 @@ group: root backup: yes when: - - nfs_ganesha_dev + - nfs_ganesha_dev | bool - ceph_repository == 'dev' - name: red hat based systems - install nfs packages @@ -49,4 +49,4 @@ state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" register: result until: result is succeeded - when: nfs_obj_gw + when: nfs_obj_gw | bool