source: trunk/puppet/modules/puppet-openldap/manifests/classes/client.pp @ 444

Last change on this file since 444 was 444, checked in by sebas, 14 years ago

clone del trabajo este git://github.com/camptocamp/puppet-openldap.git : vamos agregando algunas funciones

File size: 329 bytes
Line 
1class 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.