mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-18 07:21:30 +01:00
11 lines
161 B
Puppet
11 lines
161 B
Puppet
# Wrapper class useful for hiera based deployments
|
|
|
|
class mongodb::replset(
|
|
$sets = undef
|
|
) {
|
|
|
|
if $sets {
|
|
create_resources(mongodb_replset, $sets)
|
|
}
|
|
}
|