source:
trunk/puppet/modules/puppet-openldap/manifests/classes/client.pp
@
460
Last change on this file since 460 was 444, checked in by , 15 years ago | |
---|---|
File size: 329 bytes |
Line | |
---|---|
1 | class openldap::client { |
2 | package {"ldap-utils": |
3 | ensure => installed, |
4 | } |
5 | |
6 | file { |
7 | "/etc/ldap": |
8 | ensure => directory, |
9 | owner => root, |
10 | group => root, |
11 | mode => 755; |
12 | "/etc/ldap/ldap.conf": |
13 | require => Package["ldap-utils"], |
14 | content => template("openldap/ldap.conf.erb"); |
15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.