From 9600c682c409aee800b7ba56b1373a07683566c1 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Tue, 12 May 2020 09:48:54 +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: Ic5b2d0c8d9f30284587a61385c2d78517a82f6e8 --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 22a66e9c..4ff202ef 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -45,7 +45,7 @@ dest: "/etc/ansible/facts.d/openstack_ansible.fact" section: "galera" option: initialized - value: true + value: "True" - name: Refresh local facts setup: