From 0ffd5a944c371ae441c2c8d977486c5a20bc75fc Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 23 Jun 2017 11:28:20 -0600 Subject: [PATCH] remove unnecessary cleanup in nova startup nova's instances directory may be a shared directory (ie nfs), in these cases, we do not want to call nova_cleanup at startup since it deletes everything under $NOVA_INSTANCES_PATH. The nova_cleanup routine will still be called by the clean.sh script which is fine since we're presumably cleaning up the whole openstack cluster at that point. Change-Id: Ieb4e5d0508d4ed4c5349c497554c5da2993c9cb0 Closes-Bug: #1649389 --- stack.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/stack.sh b/stack.sh index 326d186b19..2be4528991 100755 --- a/stack.sh +++ b/stack.sh @@ -893,7 +893,6 @@ fi if is_service_enabled nova; then # Compute service stack_install_service nova - cleanup_nova configure_nova fi