Skip to content

Commit

Permalink
Git actually doesn't depend on apache2
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Jul 9, 2010
1 parent 2f81fb6 commit 725137f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
25 changes: 11 additions & 14 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
{
"recommendations": {
"providing": {
},
"attributes": {
},
"maintainer": "Opscode, Inc.",
"suggestions": {
"replacing": {
},
"dependencies": {
"runit": [

],
"apache2": [

]
},
"maintainer_email": "cookbooks@opscode.com",
"conflicting": {
"groupings": {
},
"recommendations": {
},
"platforms": {
"debian": [
Expand All @@ -26,18 +23,18 @@
]
},
"license": "Apache 2.0",
"version": "0.7.1",
"providing": {
"version": "0.8.0",
"maintainer": "Opscode, Inc.",
"suggestions": {
},
"recipes": {
"git::server": "Sets up a runit_service for git daemon",
"git": "Installs git"
},
"replacing": {
},
"maintainer_email": "cookbooks@opscode.com",
"name": "git",
"description": "Installs git and/or sets up a Git server daemon",
"groupings": {
"conflicting": {
},
"description": "Installs git and/or sets up a Git server daemon",
"long_description": "= DESCRIPTION:\n\nInstalls git.\n\n= REQUIREMENTS:\n\n== Cookbooks:\n\nOpscode Cookbooks (http://github.com/opscode/cookbooks/tree/master)\n\n* runit\n\n= USAGE:\n\nThis cookbook primarily installs git core packages. It can also be used to serve git repositories.\n\n include_recipe \"git::server\"\n\nThis creates the directory /srv/git and starts a git daemon, exporting all repositories found. Repositories need to be added manually, but will be available once they are created.\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."
}
4 changes: 2 additions & 2 deletions metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
license "Apache 2.0"
description "Installs git and/or sets up a Git server daemon"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
version "0.7.1"
version "0.8.0"
recipe "git", "Installs git"
recipe "git::server", "Sets up a runit_service for git daemon"

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

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

0 comments on commit 725137f

Please sign in to comment.