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