From 15444da4d990685ba4c954a78bea819d6706dc3b Mon Sep 17 00:00:00 2001
From: "Swapnil Kulkarni (coolsvap)" <me@coolsvap.net>
Date: Tue, 12 Apr 2016 16:29:43 +0530
Subject: [PATCH] cleanup-host should not remove kolla-build.conf

new cleanup-host script removes kolla-build.conf
in /etc/kolla directory which contains the build
configuration for building images.
This should be preserved.

Change-Id: I20fbf3f8a2400a5e048ba55beb0c8e1ec849d8a3
Related-Bug:#1561055
---
 tools/cleanup-host | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/cleanup-host b/tools/cleanup-host
index 75ed47bd33..909bed830b 100755
--- a/tools/cleanup-host
+++ b/tools/cleanup-host
@@ -38,6 +38,7 @@ FOLDER_PATH="/etc/kolla/"
 for dir in $FOLDER_PATH*; do
     if [ "$dir" == "$FOLDER_PATH""passwords.yml" ] || \
        [ "$dir" == "$FOLDER_PATH""globals.yml" ] || \
+       [ "$dir" == "$FOLDER_PATH""kolla-build.conf" ] || \
        [ "$dir" == "$FOLDER_PATH""config" ]; then
         echo "Skipping:" $dir
     else
-- 
GitLab