From ae89632faa12be498b127c97e313405d841cb0e7 Mon Sep 17 00:00:00 2001 From: Vladislav Belogrudov <v.belogrudov@yadro.com> Date: Thu, 28 Apr 2022 16:59:30 +0300 Subject: [PATCH] Skip /etc/kolla/globals.d on host cleanup Closes-Bug: #1931042 Change-Id: If4bc1fe1dcd61622c8ea48b00771d5115a63c9e0 --- tools/cleanup-host | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/cleanup-host b/tools/cleanup-host index daaf5f8dd..4a42b0a4e 100755 --- a/tools/cleanup-host +++ b/tools/cleanup-host @@ -84,6 +84,7 @@ echo "Getting folders name..." for dir in $FOLDER_PATH/*; do if [ "$dir" == "$FOLDER_PATH/passwords.yml" ] || \ [ "$dir" == "$FOLDER_PATH/globals.yml" ] || \ + [ "$dir" == "$FOLDER_PATH/globals.d" ] || \ [ "$dir" == "$FOLDER_PATH/kolla-build.conf" ] || \ [ "$dir" == "$FOLDER_PATH/config" ] || \ [ "$dir" == "$FOLDER_PATH/certificates" ]; then -- GitLab