From c779e440f684855f3c0b6fbd25c77cc1c3e566b7 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Fri, 6 Mar 2015 15:15:22 -0800 Subject: [PATCH] force_config_drive always=>True As of Ib3de8402addb4657f4f6ede35792aab0b1498ff8 the choice 'always' was deprecated and is now spewing warnings every time an instance is booted. So move to using True. Change-Id: I500838b9e010b424fa012d96c676ca39b95472c0 --- devstack-vm-gate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack-vm-gate.sh b/devstack-vm-gate.sh index 177ec242..10481a9a 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -301,7 +301,7 @@ EOF fi if [[ "$DEVSTACK_GATE_CONFIGDRIVE" -eq "1" ]]; then - echo "FORCE_CONFIG_DRIVE=always" >>"$localrc_file" + echo "FORCE_CONFIG_DRIVE=True" >>"$localrc_file" else echo "FORCE_CONFIG_DRIVE=False" >>"$localrc_file" fi