From 7682ea88a6ab8693b215646f16748dbbc2476cc4 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 18 Aug 2016 16:19:36 -0400 Subject: [PATCH] Change default for FORCE_CONFIG_DRIVE We really should be using the metadata server more in our normal testing, this changes the default to use it. Change-Id: I8ef14e6110da1160163c0106e32032d27226f929 --- lib/nova | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nova b/lib/nova index e187220198..235b533d77 100644 --- a/lib/nova +++ b/lib/nova @@ -83,7 +83,7 @@ METADATA_SERVICE_PORT=${METADATA_SERVICE_PORT:-8775} # Option to enable/disable config drive # NOTE: Set ``FORCE_CONFIG_DRIVE="False"`` to turn OFF config drive -FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"True"} +FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"False"} # Nova supports pluggable schedulers. The default ``FilterScheduler`` # should work in most cases.