aboutsummaryrefslogtreecommitdiffstats
path: root/modules/openldap/manifests/slave_instance.pp
blob: a0eb71e29d8fd07258d45896606fbc2738eb76a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
# TODO create the user for sync in ldap
# this define is mainly syntaxic sugar
define openldap::slave_instance($rid) {
    # seems the inheritance do not work as I believe
    include openldap::common
    class { 'openldap::slave':
        rid => $rid,
    }
}