# # Author:: Jamie Winsor () # Cookbook:: git # Attributes:: default # # Copyright:: 2008-2019, 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. case node['platform_family'] when 'windows' default['git']['version'] = '2.8.1' if node['kernel']['machine'] == 'x86_64' default['git']['architecture'] = '64' default['git']['checksum'] = '5e5283990cc91d1e9bd0858f8411e7d0afb70ce26e23680252fb4869288c7cfb' else default['git']['architecture'] = '32' default['git']['checksum'] = '17418c2e507243b9c98db161e9e5e8041d958b93ce6078530569b8edaec6b8a4' end default['git']['url'] = 'https://github.com/git-for-windows/git/releases/download/v%{version}.windows.1/Git-%{version}-%{architecture}-bit.exe' default['git']['display_name'] = "Git version #{node['git']['version']}" else default['git']['prefix'] = '/usr/local' default['git']['version'] = '2.17.1' default['git']['url'] = 'https://nodeload.github.com/git/git/tar.gz/v%{version}' default['git']['checksum'] = '690f12cc5691e5adaf2dd390eae6f5acce68ae0d9bd9403814f8a1433833f02a' default['git']['use_pcre'] = false end default['git']['server']['base_path'] = '/srv/git' default['git']['server']['export_all'] = true