OSDN Git Service

fix service control.
[metasearch/grid-chef-repo.git] / cookbooks / jce_policy / README.md
1 jce_policy Cookbook
2 ===================
3
4 This cookbook installs jce_policy.
5
6 Requirements
7 ------------
8
9 #### packages
10 - `java` - jce_policy needs java.
11
12 Attributes
13 ----------
14
15 #### jce_policy::default
16 |Key|Type|Description (with examples)|Default|
17 |:--|:--|:--|:--|
18 |`['jce_policy']['6']['url']`|String|Java 6 JCE policy file's download URL.|`'http://download.oracle.com/otn-pub/java/jce_policy/6/jce_policy-6.zip'`|
19 |`['jce_policy']['7']['url']`|String|Java 7 JCE policy file's download URL.|`'http://download.oracle.com/otn-pub/java/jce/7/UnlimitedJCEPolicyJDK7.zip'`|
20 |`['jce_policy']['oracle']['accept_oracle_download_terms']`|Boolean|if you change this to true, you can download directly from Oracle|`false`|
21
22 Usage
23 -----
24 #### jce_policy::default
25
26 Just include `jce_policy` in your node's `run_list`:
27
28 ```json
29 {
30   "name":"my_node",
31   "run_list": [
32     "recipe[jce_policy]"
33   ]
34 }
35 ```
36
37 License and Authors
38 -------------------
39 - Author:: whitestar at osdn.jp
40
41 ```text
42 Copyright 2013-2015, whitestar
43
44 Licensed under the Apache License, Version 2.0 (the "License");
45 you may not use this file except in compliance with the License.
46 You may obtain a copy of the License at
47
48     http://www.apache.org/licenses/LICENSE-2.0
49
50 Unless required by applicable law or agreed to in writing, software
51 distributed under the License is distributed on an "AS IS" BASIS,
52 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
53 See the License for the specific language governing permissions and
54 limitations under the License.
55 ```