Skip to content

Commit

Permalink
supports platform metadata for all cookbooks that didn't have it
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Oct 27, 2009
1 parent ee2545a commit 846816c
Show file tree
Hide file tree
Showing 127 changed files with 2,107 additions and 1,498 deletions.
36 changes: 22 additions & 14 deletions activemq/metadata.json
@@ -1,40 +1,48 @@
{
"maintainer": "Opscode, Inc.",
"description": "Installs activemq and sets it up as a runit service",
"recommendations": {

},
"maintainer_email": "cookbooks@opscode.com",
"recipes": {
"activemq": ""
},
"conflicting": {

},
"description": "Installs\/Configures activemq",
"providing": {
"activemq": [
"suggestions": {

]
},
"long_description": "= DESCRIPTION:\n\n= REQUIREMENTS:\n\n= ATTRIBUTES: \n\n= USAGE:\n\n",
"platforms": {
"ubuntu": [

],
"debian": [

]
},
"version": "0.1.0",
"replacing": {
"name": "activemq",
"conflicting": {

},
"name": "activemq",
"attributes": {

},
"maintainer": "Opscode, Inc.",
"recommendations": {
"providing": {
"activemq": [

]
},
"license": "Apache 2.0",
"maintainer_email": "ops@example.com",
"suggestions": {
"long_description": "= DESCRIPTION:\n\nInstalls activemq and sets up a runit service.\n\n= REQUIREMENTS:\n\nTested on Ubuntu 9.04.\n\nOpscode cookbooks:\n\n* java\n* runit\n\n= ATTRIBUTES:\n\n* activemq[:mirror] - download URL up to the apache\/activemq\/apache-activemq directory.\n* activemq[:version] - version to install.\n\n= USAGE:\n\nInclude the default recipe on systems where you want to run activemq. At this time the cookbook doesn't use any custom configuration for activemq.\n\n= LICENSE AND AUTHOR:\n\nAuthor:: Joshua Timberman (<joshua@opscode.com>)\n\nCopyright:: 2009, 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",
"replacing": {

},
"dependencies": {
"java": [

],
"runit": [

]
}
}
4 changes: 4 additions & 0 deletions activemq/metadata.rb
Expand Up @@ -5,6 +5,10 @@
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
version "0.1"

%w{ubuntu debian}.each do |os|
supports os
end

%w{java runit}.each do |cb|
depends cb
end

0 comments on commit 846816c

Please sign in to comment.