Installs git_client from package or source. Optionally sets up a git service under xinetd.
This cookbook is concerned with the Git SCM utility. It does not address ecosystem tooling or related projects.
The following platforms have been tested with Test Kitchen:
|--------------+-------|
| centos-5 | X |
|--------------+-------|
| centos-6 | X |
|--------------+-------|
| centos-7 | X |
|--------------+-------|
| fedora-21 | X |
|--------------+-------|
| debian-7.0 | X |
|--------------+-------|
| ubuntu-12.04 | X |
|--------------+-------|
| ubuntu-14.04 | X |
|--------------+-------|
| ubuntu-15.04 | X |
|--------------+-------|
- Chef 11+
- depends 'build-essential' - For compiling from source
- depends 'dmg' - For OSX Support
- depends 'windows' - For Windows support
- depends 'yum-epel' - For older RHEL platform_family support
- Add
git::default
,git::source
orgit::windows
to your run_list - OR
- Add
depends 'git', '~> 4.3'
to your cookbook's metadata.rb - include_recipe one of the recipes from your cookbook
- OR
- Use the git_client resource directly, the same way you'd use core
- Chef resources (file, template, directory, package, etc).
-
git_client
: Manages a Git client installation on a machine. Actsas a singleton when using the (default) package provider. Source
provider available as well.
-
git_service
: Sets up a Git service via xinetd. WARNING: This isinsecure and will probably be removed in the future
The git_client
resource manages the installation of a Git client on a machine.
git_client 'default' do
action :install
end
Currently, there are distinct sets of resource properties, used by the providers for source, package, osx, and windows.
package_name
- Package name to install on Linux machines. Defaults to a calculated value based on platform.package_version
- Defaults to nil.package_action
- Defaults to:install
source_prefix
- Defaults to '/usr/local'source_url
- Defaults to a calculated URL based on source_versionsource_version
- Defaults to 1.9.5source_use_pcre
- configure option for build. Defaults to falsesource_checksum
- Defaults to a known value for the 1.9.5 source tarball
osx_dmg_app_name
- Defaults to 'git-1.9.5-intel-universal-snow-leopard'osx_dmg_package_id
- Defaults to 'GitOSX.Installer.git195.git.pkg'osx_dmg_volumes_dir
- Defaults to 'Git 1.9.5 Snow Leopard Intel Universal'osx_dmg_url
- Defaults to Sourceforgeosx_dmg_checksum
- Defaults to the value for 1.9.5
windows_display_name
- Windows display namewindows_package_url
- Defaults to the Internetwindows_package_checksum
- Defaults to the value for 1.9.5
This cookbook ships with ready to use, attribute driven recipes that utilize the git_client
and git_service
resources. As of cookbook 4.x, they utilize the same attributes layout scheme from the 3.x. Due to some overlap, it is currently impossible to simultaneously install the Git client as a package and from source by using the "manipulate a the node attributes and run a recipe" technique. If you need both, you'll need to utilize the git_client resource in a recipe.
node['git']['version']
- git version to installnode['git']['url']
- URL to git packagenode['git']['checksum']
- package SHA256 checksumnode['git']['display_name']
-windows_package
resource Display Name (makes the package install idempotent)
node['git']['osx_dmg']['url']
- URL to git packagenode['git']['osx_dmg']['checksum']
- package SHA256 checksum
node['git']['prefix']
- git install directorynode['git']['version']
- git version to installnode['git']['url']
- URL to git tarballnode['git']['checksum']
- tarball SHA256 checksumnode['git']['use_pcre']
- if true, builds git with PCRE enabled
- Author:: Joshua Timberman ([email protected])
- Author:: Sean OMeara ([email protected])
- Copyright:: 2009-2015, Chef Software, 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.