From 16246acb4c3d81e2907ba938b9404a0fc9d30ff6 Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Mon, 18 Jan 2016 01:20:53 -0500 Subject: [PATCH] remove clouds.yaml files when running clean.sh There have been a few reported errors of folks running into issues with old clouds.yaml files that linger around. Remove these if the user runs clean.sh. 1. http://lists.openstack.org/pipermail/openstack-dev/2016-January/084283.html 2. https://ask.openstack.org/en/question/84825/glance-upload_image-fails-in-latest-devstack/ 3. https://ask.openstack.org/en/question/86071/devstack-installation-failure/ Change-Id: I618ea8e27b49af360c905df85af06d9b1eef8407 --- clean.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/clean.sh b/clean.sh index fc6f80dad4..5da78519ba 100755 --- a/clean.sh +++ b/clean.sh @@ -137,6 +137,7 @@ FILES_TO_CLEAN=".localrc.auto .localrc.password " FILES_TO_CLEAN+="docs/files docs/html shocco/ " FILES_TO_CLEAN+="stack-screenrc test*.conf* test.ini* " FILES_TO_CLEAN+=".stackenv .prereqs" +FILES_TO_CLEAN+="/etc/openstack/ ~/.config/openstack" for file in $FILES_TO_CLEAN; do rm -rf $TOP_DIR/$file