Browse code

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

Gary Kotton authored on 2015/03/22 23:20:06
Showing 1 changed files
... ...
@@ -81,7 +81,7 @@ NOVA_ROOTWRAP=$(get_rootwrap_location nova)
81 81
 
82 82
 # Option to enable/disable config drive
83 83
 # NOTE: Set FORCE_CONFIG_DRIVE="False" to turn OFF config drive
84
-FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"always"}
84
+FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"True"}
85 85
 
86 86
 # Nova supports pluggable schedulers.  The default ``FilterScheduler``
87 87
 # should work in most cases.