From d2287cfb9f4dfac71f14f3374514f5b8c2b0c70b Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Sun, 22 Mar 2015 07:20:06 -0700 Subject: [PATCH] Config driver: use "True" instead of "always" Commit c12a78b35dc910fa97df888960ef2b9a64557254 has set the "always" flag to be deprecated in liberty. This moves to using "True" instead. Change-Id: Idecf7966968369d2f372abffcab85fbf9aa097c7 --- lib/nova | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nova b/lib/nova index 7fbade0713..502bb35f05 100644 --- a/lib/nova +++ b/lib/nova @@ -81,7 +81,7 @@ NOVA_ROOTWRAP=$(get_rootwrap_location nova) # Option to enable/disable config drive # NOTE: Set FORCE_CONFIG_DRIVE="False" to turn OFF config drive -FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"always"} +FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"True"} # Nova supports pluggable schedulers. The default ``FilterScheduler`` # should work in most cases.