Fixed kerberos::client for Ubuntu.
This commit is contained in:
parent
93e2f7f963
commit
1993ee6714
1 changed files with 7 additions and 0 deletions
|
@ -22,9 +22,16 @@ class kerberos::client {
|
||||||
"centos","redhat","fedora": {
|
"centos","redhat","fedora": {
|
||||||
package { "krb5-workstation":
|
package { "krb5-workstation":
|
||||||
ensure => installed,
|
ensure => installed,
|
||||||
|
before => File["krb5.conf"],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"openbsd": {}
|
"openbsd": {}
|
||||||
|
"ubuntu": {
|
||||||
|
package { [ "krb5-clients", "krb5-user", ]:
|
||||||
|
ensure => installed,
|
||||||
|
before => File["krb5.conf"],
|
||||||
|
}
|
||||||
|
}
|
||||||
default: {
|
default: {
|
||||||
fail("kerberos::client not supported in ${::operatingsystem}")
|
fail("kerberos::client not supported in ${::operatingsystem}")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue