Added dynldap python library to ldap::client::python.

This commit is contained in:
Timo Mkinen 2012-06-20 13:30:00 +03:00
parent 6d75b559b1
commit 31434a1b0b
2 changed files with 373 additions and 0 deletions

View file

@ -282,6 +282,16 @@ class ldap::client::python {
ensure => installed,
}
file { "${::pythonsitedir}/dynldap.py":
ensure => present,
source => "puppet:///modules/ldap/dynldap.py",
mode => "0644",
owner => "root",
group => "root",
require => Package["python-ldap"],
}
python::compile { "${::pythonsitedir}/dynldap.py": }
}