From cf0f3a37fa4553516ef49ff408da6d6c99db1d11 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Tue, 12 May 2020 10:00:25 +0100 Subject: [PATCH] Local facts are strings so make this explicit This patch fixes the following ansible warning: [WARNING]: The value True (type bool) in a string field was converted to u'True' (type string). If this does not look like what you expect, quote the entire value to ensure it does not change. Change-Id: If5b462b551a037107b2396d1eb2fc879d4b2bfa9 --- playbooks/os-keystone-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/os-keystone-install.yml b/playbooks/os-keystone-install.yml index 139cac3af0..554d8d459e 100644 --- a/playbooks/os-keystone-install.yml +++ b/playbooks/os-keystone-install.yml @@ -141,6 +141,6 @@ dest: "/etc/ansible/facts.d/openstack_ansible.fact" section: keystone option: "need_db_contract" - value: False + value: "False" when: - "dbsync_contract is succeeded"