Added missing dependency for LDAP authentication on OpenBSD.

This commit is contained in:
Ossi Salmi 2009-11-23 14:18:18 +02:00 committed by Timo Mkinen
parent 5860bef404
commit ca1258706e

View file

@ -40,13 +40,18 @@ class ldap::client {
$ldap_login_umask = "077"
}
package { "login_ldap":
ensure => installed,
}
file { "/etc/login.conf":
ensure => present,
content => template("ldap/login.conf.erb"),
mode => 0644,
owner => root,
group => wheel,
require => File["/etc/openldap/ldap.conf"],
require => [ File["/etc/openldap/ldap.conf"],
Package["login_ldap"], ]
}
}
}