Have qemu uri point to correct place

Prevoiusly the connection uri was using an undefined variable.  Now
it will use NOVA_LIBVIRT_SERVICE.

Change-Id: Ia5ceb3428fa7aeb8dd1dd7b500c63119856977f2
This commit is contained in:
Steven Dake 2014-10-14 08:35:54 -07:00
parent 20e88776bc
commit 394725f1b1

View File

@ -5,7 +5,8 @@
: ${NOVA_KEYSTONE_USER:=nova}
: ${ADMIN_TENANT_NAME:=admin}
check_required_vars KEYSTONE_ADMIN_TOKEN KEYSTONE_SERVICE_HOST
check_required_vars KEYSTONE_ADMIN_TOKEN KEYSTONE_SERVICE_HOST \
NOVA_LIBVIRT_SERVICE
cfg=/etc/nova/nova.conf
@ -16,7 +17,7 @@ crudini --set $cfg DEFAULT use_stderr True
crudini --set $cfg \
libvirt \
connection_uri \
"qemu+tcp://${NOVA_PORT_16509_TCP_PORT}/system"
"qemu+tcp://${NOVA_LIBVIRT_SERVICE}/system"
for option in auth_protocol auth_host auth_port; do
crudini --del $cfg \