Skip to content

Commit 248bffd

Browse files
author
jtimberman
committed
supports platform metadata for all cookbooks that didn't have it
1 parent bbce55a commit 248bffd

File tree

127 files changed

+2107
-1498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+2107
-1498
lines changed

activemq/metadata.json

+22-14
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,48 @@
11
{
2+
"maintainer": "Opscode, Inc.",
3+
"description": "Installs activemq and sets it up as a runit service",
4+
"recommendations": {
5+
6+
},
7+
"maintainer_email": "cookbooks@opscode.com",
28
"recipes": {
39
"activemq": ""
410
},
5-
"conflicting": {
6-
7-
},
8-
"description": "Installs\/Configures activemq",
9-
"providing": {
10-
"activemq": [
11+
"suggestions": {
1112

12-
]
1313
},
14-
"long_description": "= DESCRIPTION:\n\n= REQUIREMENTS:\n\n= ATTRIBUTES: \n\n= USAGE:\n\n",
1514
"platforms": {
15+
"ubuntu": [
16+
17+
],
18+
"debian": [
1619

20+
]
1721
},
1822
"version": "0.1.0",
19-
"replacing": {
23+
"name": "activemq",
24+
"conflicting": {
2025

2126
},
22-
"name": "activemq",
2327
"attributes": {
2428

2529
},
26-
"maintainer": "Opscode, Inc.",
27-
"recommendations": {
30+
"providing": {
31+
"activemq": [
2832

33+
]
2934
},
3035
"license": "Apache 2.0",
31-
"maintainer_email": "ops@example.com",
32-
"suggestions": {
36+
"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",
37+
"replacing": {
3338

3439
},
3540
"dependencies": {
3641
"java": [
3742

43+
],
44+
"runit": [
45+
3846
]
3947
}
4048
}

activemq/metadata.rb

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
66
version "0.1"
77

8+
%w{ubuntu debian}.each do |os|
9+
supports os
10+
end
11+
812
%w{java runit}.each do |cb|
913
depends cb
1014
end

0 commit comments

Comments
 (0)