Skip to content

Instantly share code, notes, and snippets.

@mrchrisadams
Created November 17, 2010 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrchrisadams/703688 to your computer and use it in GitHub Desktop.
Save mrchrisadams/703688 to your computer and use it in GitHub Desktop.
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
case node[:platform]
when "debian", "ubuntu"
%w{ runit }.each do |cb|
depends cb
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment