30 lines
3.3 KiB
JSON
30 lines
3.3 KiB
JSON
{
|
|
"name": "yum-erlang_solutions",
|
|
"version": "0.2.0",
|
|
"description": "Installs/Configures yum-erlang_solutions",
|
|
"long_description": "yum-erlang_solutions Cookbook\n============\n\nThe yum-erlang_solutions cookbook takes over management of the default\nrepositoryids used by erlang_solutions. It allows attribute manipulation of\n`erlang_solutions`.\n\nRequirements\n------------\n* Chef 11 or higher\n* yum cookbook version 3.0.0 or higher\n\nAttributes\n----------\nThe following attributes are set by default\n\n``` ruby\ndefault['yum']['erlang_solutions']['baseurl'] = 'http://packages.erlang-solutions.com/rpm/centos/$releasever/$basearch'\ndefault['yum']['erlang_solutions']['description'] = 'Centos $releasever - $basearch - Erlang Solutions'\ndefault['yum']['erlang_solutions']['gpgkey'] = 'http://packages.erlang-solutions.com/debian/erlang_solutions.asc'\ndefault['yum']['erlang_solutions']['enabled'] = true\n```\n\nRecipes\n-------\n* default - Walks through node attributes and feeds a yum_resource\n parameters. The following is an example a resource generated by the\n recipe during compilation.\n\n```ruby\n yum_repository 'erlang_solutions' do\n baseurl 'http://packages.erlang-solutions.com/rpm/centos/$releasever/$basearch'\n description 'Centos $releasever - $basearch - Erlang Solutions'\n enabled true\n gpgcheck true\n gpgkey 'http://packages.erlang-solutions.com/debian/erlang_solutions.asc'\n end\n```\n\nUsage Example\n-------------\nTo disable the erlang_solutions repository through a Role or Environment definition\n\n```\ndefault_attributes(\n :yum => {\n :erlang_solutions => {\n :enabled => {\n false\n }\n }\n }\n )\n```\n\nTo enable the erlang_solutions repository with a wrapper cookbook, place\nthe following in a recipe:\n\n```\nnode.default['yum']['erlang_solutions']['enabled'] = true\ninclude_recipe 'yum-erlang_solutions'\n```\n\nMore Examples\n-------------\nPoint the erlang_solutions repositories at an internally hosted server.\n\n```\nnode.default['yum']['erlang_solutions']['enabled'] = true\nnode.default['yum']['erlang_solutions']['baseurl'] = 'https://internal.example.com/erlang_solutions'\nnode.default['yum']['erlang_solutions']['sslverify'] = false\n\ninclude_recipe 'yum-erlang_solutions'\n```\n\nLicense & Authors\n-----------------\n- Author:: Sean OMeara (<someara@opscode.com>)\n\n```text\nCopyright:: 2011-2013 Opscode, Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n",
|
|
"maintainer": "Chef",
|
|
"maintainer_email": "Sean OMeara <someara@getchef.com>",
|
|
"license": "Apache 2.0",
|
|
"platforms": {
|
|
},
|
|
"dependencies": {
|
|
"yum": "~> 3.0"
|
|
},
|
|
"recommendations": {
|
|
},
|
|
"suggestions": {
|
|
},
|
|
"conflicting": {
|
|
},
|
|
"providing": {
|
|
},
|
|
"replacing": {
|
|
},
|
|
"attributes": {
|
|
},
|
|
"groupings": {
|
|
},
|
|
"recipes": {
|
|
}
|
|
} |