Added kerberos authentication support to Ubuntu.

This commit is contained in:
Timo Mkinen 2013-04-19 10:11:30 +03:00
parent 2e4349633f
commit bf8c9d9e62

View file

@ -91,6 +91,11 @@ class kerberos::auth {
require => Package["authconfig", "pam_krb5"], require => Package["authconfig", "pam_krb5"],
} }
} }
"ubuntu": {
package { "libpam-krb5":
ensure => installed,
}
}
default: { default: {
fail("kerberos::auth not supported on ${::operatingsystem}") fail("kerberos::auth not supported on ${::operatingsystem}")
} }