define cc-mongo::server_config (
$replSet = "$environment",
$server_name = "$hostname",
$ipaddress = "$ipaddress",
$sequence = 0,
) {
file { 'mongo.conf':
path => '/etc/mongod.conf',
notify => Service['mongod'],
owner => mongod,
group => mongod,
mode => 0640,
content => template('cc-mongo/mongod.conf.erb');
}
}