[Fix] Updated the puppet module and add the smallfile support

This patch fix: bz#1028690, bz#1036207, bz#1029322

Change-Id: If46f956bd0c959ace9689d154c230efb928e9a2b
This commit is contained in:
Francesco Vollero
2014-01-16 19:05:02 +01:00
parent b925471df2
commit 17aa9f6c9d
2 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
class { 'mongodb':
enable_10gen => false,
class { 'mongodb::server':
port => '27017',
smallfiles => true,
before => Class['ceilometer::db'],
require => Firewall['001 mongodb incoming localhost'],
}
@@ -28,11 +28,11 @@ class { 'ceilometer':
class { 'ceilometer::db':
database_connection => 'mongodb://localhost:27017/ceilometer',
require => Class['mongodb'],
require => Class['mongodb::server'],
}
class { 'ceilometer::collector':
require => Class['mongodb'],
require => Class['mongodb::server'],
}
class { 'ceilometer::agent::auth':
@@ -52,5 +52,5 @@ class { 'ceilometer::alarm::evaluator':
class { 'ceilometer::api':
keystone_host => '%(CONFIG_KEYSTONE_HOST)s',
keystone_password => '%(CONFIG_CEILOMETER_KS_PW)s',
require => Class['mongodb'],
require => Class['mongodb::server'],
}