From c3e5b77b45068ed07e53fdda1276f5c863de5973 Mon Sep 17 00:00:00 2001 From: Flavio Percoco Date: Thu, 23 Jan 2014 13:48:16 +0100 Subject: [PATCH] Add missing file argument to iniset_multiline Change Id9aab356b36b2150312324a0349d120bbbbd4e63 introduced a call to iniset_multiline to enable swift stores explicitly. However, the call has a missing file argument which resulted in this call setting the values to the wrong file, section and param. This patch fixes that. Change-Id: Ib17048e05c467bc8ca2c13fe4297d6bac6c8a880 --- lib/glance | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/glance b/lib/glance index 21c1fa595a..55d5fb37ec 100644 --- a/lib/glance +++ b/lib/glance @@ -125,7 +125,7 @@ function configure_glance() { iniset $GLANCE_API_CONF DEFAULT swift_store_key $SERVICE_PASSWORD iniset $GLANCE_API_CONF DEFAULT swift_store_create_container_on_put True - iniset_multiline DEFAULT known_stores glance.store.filesystem.Store glance.store.http.Store glance.store.swift.Store + iniset $GLANCE_API_CONF DEFAULT known_stores "glance.store.filesystem.Store, glance.store.http.Store, glance.store.swift.Store" fi cp -p $GLANCE_DIR/etc/glance-registry-paste.ini $GLANCE_REGISTRY_PASTE_INI