mongodb modules want bind_ip to be a list

The mongodb puppet module expects bind_ip to be a list.  This is a small
patch to make that true in mongodb.pp.

Change-Id: Ia93f8489d7e49085506e2125a77fe2395126674b
Closes-bug: 1297984
This commit is contained in:
Lars Kellogg-Stedman
2014-03-26 14:04:05 -04:00
parent b6adcc7388
commit d4f90b1ee8

View File

@@ -1,5 +1,5 @@
class { 'mongodb::server':
smallfiles => true,
bind_ip => '%(CONFIG_MONGODB_HOST)s',
bind_ip => ['%(CONFIG_MONGODB_HOST)s'],
before => Class['ceilometer::db'],
}