From 2ea890a77db888ab63de64c7a0e545d8ba6124f2 Mon Sep 17 00:00:00 2001
From: Thiago Gomes <thiago.gomes@lsbd.ufc.br>
Date: Tue, 8 Mar 2016 10:33:08 -0500
Subject: [PATCH] Fix default value on globals for config_strategy

In kolla/ansible/group_vars/all.yml config_strategy is COPY_ALWAYS
In kolla/etc/kolla/globals.yml the default value shown is COPY_ONCE

TrivialFix

Change-Id: If7000b811715c6cb84af3539cb522c22d31dc03b
---
 etc/kolla/globals.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml
index e98f4e1216..f2ab78c8dc 100644
--- a/etc/kolla/globals.yml
+++ b/etc/kolla/globals.yml
@@ -6,7 +6,7 @@
 # Kolla options
 ###################
 # Valid options are [ COPY_ONCE, COPY_ALWAYS ]
-#config_strategy: "COPY_ONCE"
+#config_strategy: "COPY_ALWAYS"
 
 # Valid options are [ centos, fedora, oraclelinux, ubuntu ]
 #kolla_base_distro: "centos"