From f441b212f5786f07472c103b36aa6224b19bbf25 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Wed, 3 Feb 2021 16:22:54 +0200 Subject: [PATCH] Fix neutron_keepalived_no_track default logic Current logic didn't make sense and made condition to be always true for ubuntu/debian regardless OS version. While for bionic it should have remained as false. Change-Id: I5a2cfa40dbcd8116065892e5994898914fd0480b --- vars/debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/debian.yml b/vars/debian.yml index ba705f3b..e7e3d522 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -105,4 +105,4 @@ neutron_oslomsg_amqp1_distro_packages: - libsasl2-modules - sasl2-bin -_neutron_keepalived_no_track: "{{ (ansible_distribution_major_version is version('20', '>=') or ansible_os_family | lower == 'debian') }}" +_neutron_keepalived_no_track: "{{ (ansible_distribution_major_version is version('20', '>=') or ansible_distribution | lower == 'debian') }}"