From ede416aac3bdc098a354dd7b4ebc08a4b8eff366 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Mon, 3 Dec 2018 17:24:39 +0000 Subject: [PATCH] Fix ansible deprecation warnings === [DEPRECATION WARNING]: Using tests as filters is deprecated. Instead of using `result|search` use `result is search`. This feature will be removed in version 2.9. === Change-Id: I158a42b82d1818fa4e9296343b1b4ab787e8d89d --- tasks/glance_install.yml | 2 +- tasks/glance_post_install.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/glance_install.yml b/tasks/glance_install.yml index d4843c60..81c0e1df 100644 --- a/tasks/glance_install.yml +++ b/tasks/glance_install.yml @@ -98,7 +98,7 @@ section: "glance" option: "need_service_restart" value: true - when: (install_packages | changed) or + when: (install_packages is changed) or ('need_service_restart' not in ansible_local['openstack_ansible']['glance']) - name: Run the systemd service role diff --git a/tasks/glance_post_install.yml b/tasks/glance_post_install.yml index cb137d34..8134f3b7 100644 --- a/tasks/glance_post_install.yml +++ b/tasks/glance_post_install.yml @@ -121,4 +121,4 @@ hour: "*" - name: "{{ glance_bin }}/glance-cache-cleaner" hour: "*/5" - when: glance_flavor | search("cache") + when: glance_flavor is search("cache")