cookbook 'git', '= 5.0.2'
git
(84) Versions
5.0.2
-
-
12.1.5
-
12.1.4
-
12.1.3
-
12.1.2
-
12.1.1
-
12.0.0
-
11.2.9
-
11.2.8
-
11.2.7
-
11.2.6
-
11.2.5
-
11.2.4
-
11.2.3
-
11.2.2
-
11.2.1
-
11.2.0
-
11.1.6
-
11.1.5
-
11.1.4
-
11.1.3
-
11.1.2
-
11.1.1
-
11.1.0
-
11.0.2
-
11.0.1
-
11.0.0
-
10.1.0
-
10.0.0
-
9.0.1
-
9.0.0
-
8.0.1
-
8.0.0
-
7.0.0
-
6.1.0
-
6.0.0
-
5.0.2
-
5.0.1
-
5.0.0
-
4.6.0
-
4.5.0
-
4.4.1
-
4.4.0
-
4.3.7
-
4.3.6
-
4.3.5
-
4.3.4
-
4.3.3
-
4.3.2
-
4.3.1
-
4.3.0
-
4.2.4
-
4.2.3
-
4.2.2
-
4.2.1
-
4.2.0
-
4.1.0
-
4.0.2
-
4.0.0
-
3.1.0
-
3.0.0
-
2.10.0
-
2.9.0
-
2.8.4
-
2.8.1
-
2.7.0
-
2.6.0
-
2.5.2
-
2.5.0
-
2.4.0
-
2.3.0
-
2.2.0
-
2.1.4
-
2.1.2
-
2.1.0
-
2.0.0
-
1.1.2
-
1.1.0
-
1.0.2
-
1.0.0
-
0.10.0
-
0.9.0
-
0.8.1
-
0.8.0
-
0.7.0
Follow376
- 12.1.5
- 12.1.4
- 12.1.3
- 12.1.2
- 12.1.1
- 12.0.0
- 11.2.9
- 11.2.8
- 11.2.7
- 11.2.6
- 11.2.5
- 11.2.4
- 11.2.3
- 11.2.2
- 11.2.1
- 11.2.0
- 11.1.6
- 11.1.5
- 11.1.4
- 11.1.3
- 11.1.2
- 11.1.1
- 11.1.0
- 11.0.2
- 11.0.1
- 11.0.0
- 10.1.0
- 10.0.0
- 9.0.1
- 9.0.0
- 8.0.1
- 8.0.0
- 7.0.0
- 6.1.0
- 6.0.0
- 5.0.2
- 5.0.1
- 5.0.0
- 4.6.0
- 4.5.0
- 4.4.1
- 4.4.0
- 4.3.7
- 4.3.6
- 4.3.5
- 4.3.4
- 4.3.3
- 4.3.2
- 4.3.1
- 4.3.0
- 4.2.4
- 4.2.3
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.0
- 4.0.2
- 4.0.0
- 3.1.0
- 3.0.0
- 2.10.0
- 2.9.0
- 2.8.4
- 2.8.1
- 2.7.0
- 2.6.0
- 2.5.2
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.4
- 2.1.2
- 2.1.0
- 2.0.0
- 1.1.2
- 1.1.0
- 1.0.2
- 1.0.0
- 0.10.0
- 0.9.0
- 0.8.1
- 0.8.0
- 0.7.0
Installs git and/or sets up a Git server daemon
cookbook 'git', '= 5.0.2', :supermarket
knife supermarket install git
knife supermarket download git
Git Cookbook
Installs git_client from package or source. Optionally sets up a git service under xinetd.
Scope
This cookbook is concerned with the Git SCM utility. It does not address ecosystem tooling or related projects.
Requirements
Platforms
The following platforms have been tested with Test Kitchen:
|--------------+-------|
| centos-5 | X |
|--------------+-------|
| centos-6 | X |
|--------------+-------|
| centos-7 | X |
|--------------+-------|
| fedora | X |
|--------------+-------|
| debian-7 | X |
|--------------+-------|
| debian-8 | X |
|--------------+-------|
| ubuntu-12.04 | X |
|--------------+-------|
| ubuntu-14.04 | X |
|--------------+-------|
| ubuntu-16.04 | X |
|--------------+-------|
Chef
- Chef 12.1+
Cookbooks
- depends 'build-essential' - For compiling from source
- depends 'dmg' - For OSX Support
- depends 'yum-epel' - For older RHEL platform_family support
Usage
- 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).
Resources Overview
git_client
: Manages a Git client installation on a machine. Acts as a singleton when using the (default) package provider. Source provider available as well.git_service
: Sets up a Git service via xinetd. WARNING: This is insecure and will probably be removed in the futuregit_config
: Sets up Git configuration on a node.
git_client
The git_client
resource manages the installation of a Git client on a machine.
Example
git_client 'default' do
action :install
end
git_config
The git_config
resource manages the configuration of Git client on a machine.
Example
git_config 'url.https://github.com/.insteadOf' do value 'git://github.com/' scope 'system' options '--add' end
Properties
Currently, there are distinct sets of resource properties, used by the providers for source, package, osx, and windows.
used by linux package providers
-
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
used by source providers
-
source_prefix
- Defaults to '/usr/local' -
source_url
- Defaults to a calculated URL based on source_version -
source_version
- Defaults to 2.7.4 -
source_use_pcre
- configure option for build. Defaults to false -
source_checksum
- Defaults to a known value for the 2.7.4 source tarball
used by OSX package providers
-
osx_dmg_app_name
- Defaults to 'git-2.7.1-intel-universal-mavericks' -
osx_dmg_package_id
- Defaults to 'GitOSX.Installer.git271.git.pkg' -
osx_dmg_volumes_dir
- Defaults to 'Git 2.7.1 Mavericks Intel Universal' -
osx_dmg_url
- Defaults to Sourceforge -
osx_dmg_checksum
- Defaults to the value for 2.7.1
used by the Windows package providers
-
windows_display_name
- Windows display name -
windows_package_url
- Defaults to the Internet -
windows_package_checksum
- Defaults to the value for 2.7.4
Recipes
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.
Attributes
Windows
-
node['git']['version']
- git version to install -
node['git']['url']
- URL to git package -
node['git']['checksum']
- package SHA256 checksum -
node['git']['display_name']
-windows_package
resource Display Name (makes the package install idempotent)
Mac OS X
-
node['git']['osx_dmg']['url']
- URL to git package -
node['git']['osx_dmg']['checksum']
- package SHA256 checksum
Linux
-
node['git']['prefix']
- git install directory -
node['git']['version']
- git version to install -
node['git']['url']
- URL to git tarball -
node['git']['checksum']
- tarball SHA256 checksum -
node['git']['use_pcre']
- if true, builds git with PCRE enabled
License & Authors
- Author:: Joshua Timberman (joshua@chef.io)
- Author:: Sean OMeara (sean@sean.io)
- Copyright:: 2009-2016, 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.
git Cookbook CHANGELOG
This file is used to list changes made in each version of the git cookbook.
5.0.2 (2017-01-18)
- Remove arch for the metadata
- Avoid deprecation warning during testing
- respond_to?(:chef_version) for < 12.6 compat
5.0.1 (2016-09-15)
- Clarify we require Chef 12.1 or later
5.0.0 (2016-09-02)
- Require Chef 12 or later
- Don't depend on the windows cookbook since windows_package is built into Chef 12
- Updates for testing
v4.6.0 (2016-07-05)
- Added support for compiling git on suse
- Added the ability to pass a new group property to the config provider
- Documented the git_config provider
- Added the tar package on RHEL/Fedora for source installs as some minimal installs lack this package
- Added suse, opensuse, and opensuseleap as supported platforms in the metadata
- Switched to inspec for testing
- Switched to cookstyle for Ruby linting
- Added Travis integration testing of Debian 7/8
v4.5.0 (2016-04-28)
- Update git versions to 2.8.1
v4.4.1 (2016-03-31)
- PR #95 support 32 bit and 64 bit installs on windows @smurawski
v4.4.0 (2016-03-23)
- PR #93 bump to latest git @ksubrama
v4.3.7 (2016-02-03)
- PR #90 port node[git][server][export_all] to true/false @scalp42
- PR #89 make attributes more wrapper friendly @scalp42
- Update testing deps + rubocop fixes
- README fix @zverulacis
v4.3.6 (2016-01-25)
- Windows fixes
v4.3.5 (2015-12-15)
- Fixed installation on Windows nodes
- Removed the last of the Chef 10 compatibility code
- Added up to date contributing and testing docs
- Updated test deps in the Gemfile
- Removed test kitchen digital ocean config
- Test with kitchen-docker in Travis CI
- Removed uncessary windows cookbook entry from the Berksfile
- Added the chef standard rubocop.yml file and resolved all warnings
- Added chefignore file
- Removed bin dir
- Added maintainers.md and maintainers.toml files
- Added travis and supermarket version badges to the readme
v4.3.4 (2015-09-06)
- Fixing package_id on OSX
- Adding 2.5.1 data for Windows
v4.3.3 (2015-07-27)
- # 76: Use checksum keyname instead of value in source recipe
v4.3.2 (2015-07-27)
- Fixing up Windows provider (issue #73)
- Supporting changes to source_prefix in source provider (#62)
v4.3.1 (2015-07-23)
- Fixing up osx_dmg_source_url
v4.3.0 (2015-07-20)
- Removing references to node attributes from provider code
- Name-spacing of client resource property names
- Addition of windows recipe
- Creation of package recipe
v4.2.4 (2015-07-19)
- Fixing source provider selection bug from 4.2.3
v4.2.3 (2015-07-18)
- mac_os_x provider mapping
- various rubocops
v4.2.2 (2015-04-23)
- Fix up action in Chef::Resource::GitService
- Adding matchers
v4.2.1 (2015-04-17)
- Fixing Chef 11 support.
- Adding provider mapping file
v4.2.0 (2015-04-15)
- Converting recipes to resources.
- Keeping recipe interface for backwards compat
v4.1.0 (2014-12-23)
- Fixing windows package checksums
- Various test coverage additions
v4.0.2 (2014-04-23)
- [COOK-4482] - Add FreeBSD support for installing git client
v4.0.0 (2014-03-18)
- [COOK-4397] Only use_inline_resources on Chef 11
v3.1.0 (2014-03-12)
- [COOK-4392] - Cleanup git_config LWRP
v3.0.0 (2014-02-28)
[COOK-4387] Add git_config type [COOK-4388] Fix up rubocops [COOK-4390] Add integration tests for default and server suites
v2.10.0 (2014-02-25)
- [COOK-4146] - wrong dependency in git::source for rhel 6
- [COOK-3947] - Git cookbook adds itself to the path every run
v2.9.0
Updating to depend on cookbook yum ~> 3 Fixing style to pass rubocop Updating test scaffolding
v2.8.4
fixing metadata version error. locking to 3.0
v2.8.1
Locking yum dependency to '< 3'
v2.8.0
Bug
- [COOK-3433] - git::server does not correctly set git-daemon's base-path on Debian
v2.7.0
Bug
-
COOK-3624 - Don't restart
xinetd
on each Chef client run - COOK-3482 - Force git to add itself to the current process' PATH
New Feature
- COOK-3223 - Support Omnios and SmartOS package installs
v2.6.0
Improvement
- COOK-3193 - Add proper debian packages
v2.5.2
Bug
- [COOK-2813]: Fix bad string interpolation in source recipe
v2.5.0
- Relax runit version constraint (now depend on 1.0+).
v2.4.0
- [COOK-2734] - update git versions
v2.3.0
- [COOK-2385] - update git::server for
runit_service
resource support
v2.2.0
- [COOK-2303] - git::server support for RHEL
platform_family
v2.1.4
- [COOK-2110] - initial test-kitchen support (only available in GitHub repository)
- [COOK-2253] - pin runit dependency
v2.1.2
- [COOK-2043] - install git on ubuntu 12.04 not git-core
v2.1.0
The repository didn't have pushed commits, and so the following changes from earlier-than-latest versions wouldn't be available on the community site. We're releasing 2.1.0 to correct this.
- [COOK-1943] - Update to git 1.8.0
- [COOK-2020] - Add setup option attributes to Git Windows package install
v2.0.0
This version uses platform_family
attribute, making the cookbook incompatible with older versions of Chef/Ohai, hence the major version bump.
- [COOK-1668] - git cookbook fails to run due to bad
platform_family
call - [COOK-1759] - git::source needs additional package for rhel
platform_family
v1.1.2
- [COOK-2020] - Add setup option attributes to Git Windows package install
v1.1.0
- [COOK-1943] - Update to git 1.8.0
v1.0.2
- [COOK-1537] - add recipe for source installation
v1.0.0
- [COOK-1152] - Add support for Mac OS X
- [COOK-1112] - Add support for Windows
v0.10.0
- [COOK-853] - Git client installation on CentOS
v0.9.0
- Current public release
Collaborator Number Metric
5.0.2 passed this metric
Foodcritic Metric
5.0.2 passed this metric
License Metric
5.0.2 passed this metric
5.0.2 passed this metric
5.0.2 passed this metric
License Metric
5.0.2 passed this metric
5.0.2 passed this metric