Added classes for python and ruby ldap bindings.

This commit is contained in:
Timo Mkinen 2009-09-27 01:27:02 +03:00
parent 347e53769d
commit eec12b1732

View file

@ -32,3 +32,29 @@ class ldap::client {
}
}
# Install python ldap bindings.
#
class ldap::client::python inherits ldap::client {
package { "python-ldap":
name => $operatingsystem ? {
openbsd => "py-ldap",
default => "python-ldap",
},
ensure => installed,
}
}
# Install Ruby ldap bindings.
#
class ldap::client::ruby inherits ldap::client {
package { "ruby-ldap":
ensure => installed,
}
}