fix backends

This commit is contained in:
Dan Bode
2012-10-14 00:23:09 -07:00
parent 648085d2a4
commit 74b15ec273
4 changed files with 12 additions and 12 deletions

View File

@@ -21,10 +21,10 @@ class glance::backend::swift(
glance_api_config {
'DEFAULT/default_store': value => 'swift';
'DEFAULT/swift_store_user': value => $swift_store_user,
'DEFAULT/swift_store_key': value => $swift_store_key,
'DEFAULT/swift_store_auth_address' value => $swift_store_auth_address,
'DEFAULT/swift_store_container': value => $swift_store_container,
'DEFAULT/swift_store_user': value => $swift_store_user;
'DEFAULT/swift_store_key': value => $swift_store_key;
'DEFAULT/swift_store_auth_address': value => $swift_store_auth_address;
'DEFAULT/swift_store_container': value => $swift_store_container;
'DEFAULT/swift_store_create_container_on_put':
value => $swift_store_create_container_on_put;
}

View File

@@ -3,8 +3,9 @@
#
class glance::notify::qpid(
$qpid_password,
$qpid_usernane => 'guest',
$qpid_host => 'localhost'
$qpid_username = 'guest',
$qpid_host = 'localhost',
$qpid_port = '5672'
) inherits glance::api {
glance_api_config {

View File

@@ -3,8 +3,8 @@
#
class glance::notify::rabbitmq(
$rabbit_password,
$rabbitmq_userid => 'guest',
$rabbit_host => 'localhost'
$rabbit_userid = 'guest',
$rabbit_host = 'localhost'
) inherits glance::api {
glance_api_config {

View File

@@ -60,10 +60,9 @@ class glance::registry(
# auth config
glance_registry_config {
'keystone_authtoken/auth_host': value => $auth_host;
'keystone_authtoken/auth_port': value => $auth_port;
'keystone_authtoken/protocol': value => $protocol;
'keystone_authtoken/auth_uri': value => $auth_uri;
'keystone_authtoken/auth_host': value => $auth_host;
'keystone_authtoken/auth_port': value => $auth_port;
'keystone_authtoken/auth_protocol': value => $auth_protocol;
}
# keystone config