Fixed kerberos::client for Ubuntu.

This commit is contained in:
Timo Mkinen 2012-11-21 17:14:05 +02:00
parent 93e2f7f963
commit 1993ee6714

View file

@ -22,9 +22,16 @@ class kerberos::client {
"centos","redhat","fedora": {
package { "krb5-workstation":
ensure => installed,
before => File["krb5.conf"],
}
}
"openbsd": {}
"ubuntu": {
package { [ "krb5-clients", "krb5-user", ]:
ensure => installed,
before => File["krb5.conf"],
}
}
default: {
fail("kerberos::client not supported in ${::operatingsystem}")
}