Skip to content

Commit

Permalink
Import git version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Nov 5, 2010
1 parent 2a44c2b commit 0d80f22
Show file tree
Hide file tree
Showing 7 changed files with 159 additions and 0 deletions.
37 changes: 37 additions & 0 deletions cookbooks/git/README.rdoc
@@ -0,0 +1,37 @@
= DESCRIPTION:

Installs git.

= REQUIREMENTS:

== Cookbooks:

Opscode Cookbooks (http://github.com/opscode/cookbooks/tree/master)

* runit

= USAGE:

This cookbook primarily installs git core packages. It can also be used to serve git repositories.

include_recipe "git::server"

This 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.

= LICENSE and AUTHOR:

Author:: Joshua Timberman (<joshua@opscode.com>)

Copyright:: 2009, Opscode, Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
43 changes: 43 additions & 0 deletions cookbooks/git/metadata.json
@@ -0,0 +1,43 @@
{
"name": "git",
"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.",
"maintainer": "Opscode, Inc.",
"maintainer_email": "cookbooks@opscode.com",
"license": "Apache 2.0",
"platforms": {
"ubuntu": [

],
"debian": [

],
"arch": [

]
},
"dependencies": {
"runit": [

]
},
"recommendations": {
},
"suggestions": {
},
"conflicting": {
},
"providing": {
},
"replacing": {
},
"attributes": {
},
"groupings": {
},
"recipes": {
"git": "Installs git",
"git::server": "Sets up a runit_service for git daemon"
},
"version": "0.9.0"
}
16 changes: 16 additions & 0 deletions cookbooks/git/metadata.rb
@@ -0,0 +1,16 @@
maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com"
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.9.0"
recipe "git", "Installs git"
recipe "git::server", "Sets up a runit_service for git daemon"

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

%w{ runit }.each do |cb|
depends cb
end
24 changes: 24 additions & 0 deletions cookbooks/git/recipes/default.rb
@@ -0,0 +1,24 @@
#
# Cookbook Name:: git
# Recipe:: default
#
# Copyright 2008-2009, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

case node[:platform]
when "debian", "ubuntu"
package "git-core"
else
package "git"
end
34 changes: 34 additions & 0 deletions cookbooks/git/recipes/server.rb
@@ -0,0 +1,34 @@
#
# Cookbook Name:: git
# Recipe:: server
#
# Copyright 2009, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

include_recipe "git"

directory "/srv/git" do
owner "root"
group "root"
mode 0755
end

case node[:platform]
when "debian", "ubuntu"
include_recipe "runit"
runit_service "git-daemon"
else
log "Platform requires setting up a git daemon service script."
log "Hint: /usr/bin/git daemon --export-all --user=nobody --group=daemon --base-path=/srv/git"
end
2 changes: 2 additions & 0 deletions cookbooks/git/templates/default/sv-git-daemon-log-run.erb
@@ -0,0 +1,2 @@
#!/bin/sh
exec svlogd -tt ./main
3 changes: 3 additions & 0 deletions cookbooks/git/templates/default/sv-git-daemon-run.erb
@@ -0,0 +1,3 @@
#!/bin/sh
exec 2>&1
exec /usr/bin/git daemon --export-all --user=nobody --group=daemon --base-path=/srv/git /srv/git

0 comments on commit 0d80f22

Please sign in to comment.