OSDN Git Service

updates for grid-ns-master role.
[metasearch/grid-chef-repo.git] / cookbooks / krb5 / README.md
1 krb5 Cookbook
2 =============
3
4 This cookbook contains Admin., KDC and Client setup recipes for Kerberos 5.
5
6 Requirements
7 ------------
8
9 None.
10
11 Attributes
12 ----------
13
14 #### krb5::default
15 |Key|Type|Description (with examples)|Default|
16 |:--|:--|:--|:--|
17 |`['krb5']['libdefaults']['default_realm']`|String|in /etc/krb5.conf and /etc/kdc.conf|`'LOCALDOMAIN'`|
18 |`['krb5']['libdefaults']['allow_weak_crypto']`|String|in /etc/krb5.conf|`'false'`|
19 |`['krb5']['libdefaults']['default_tgs_enctypes']`|String|in /etc/krb5.conf|`nil`|
20 |`['krb5']['libdefaults']['default_tkt_enctypes']`|String|in /etc/krb5.conf|`nil`|
21 |`['krb5']['libdefaults']['permitted_enctypes']`|String|in /etc/krb5.conf|`nil`|
22 |`['krb5']['realms']["#{node['krb5']['libdefaults']['default_realm']}"]['kdcs']`|Array|in /etc/krb5.conf|`['localhost']`|
23 |`['krb5']['realms']["#{node['krb5']['libdefaults']['default_realm']}"]['admin_setver']`|String|in /etc/krb5.conf|`'localhost'`|
24 |`['krb5']['domain_realms']`|Array|in /etc/krb5.conf|`['localhost = LOCALDOMAIN']`|
25 |`['krb5']['kadm5.acl']`|String|ACL setting in /etc/krb5kdc/kadm5.acl|`''`|
26 |`['krb5']['kpropd.acl']`|String|ACL setting in /etc/krb5kdc/kpropd.acl|`''`|
27
28 Usage
29 -----
30 #### recipes
31 - `krb5::admin` - Admin. and master KDC setup recipe.
32 - `krb5::client` - Kerberos 5 client setup recipe.
33 - `krb5::kdc` - slave KDC setup recipe.
34
35 License and Authors
36 -------------------
37 - Author:: whitestar at osdn.jp
38
39 ```text
40 Copyright 2013-2015, whitestar
41
42 Licensed under the Apache License, Version 2.0 (the "License");
43 you may not use this file except in compliance with the License.
44 You may obtain a copy of the License at
45
46     http://www.apache.org/licenses/LICENSE-2.0
47
48 Unless required by applicable law or agreed to in writing, software
49 distributed under the License is distributed on an "AS IS" BASIS,
50 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51 See the License for the specific language governing permissions and
52 limitations under the License.
53 ```