aboutsummaryrefslogtreecommitdiffstats
path: root/modules/openldap/manifests/config.pp
blob: 336f8a23a1a665fb73eb81da69078091adf1d136 (plain)
1
2
3
4
5
6
7
define openldap::config($content) {
    file { $name:
        require => Package['openldap-servers'],
        content => $content,
        notify  => Exec["slaptest"],
    }
}