Skip to content

Commit

Permalink
Add git cookbook
Browse files Browse the repository at this point in the history
Remove PHPMyAdmin conf file
  • Loading branch information
abtris committed Feb 1, 2011
1 parent 4a379ed commit 89c1244
Show file tree
Hide file tree
Showing 8 changed files with 159 additions and 1 deletion.
37 changes: 37 additions & 0 deletions cookbooks/git/README.rdoc
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion cookbooks/vagrant_main/files/default/phpmyadmin.deb.conf

This file was deleted.

0 comments on commit 89c1244

Please sign in to comment.