From da79eb4611b39c9c4d68a6654f3a557b48bba431 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 7 Apr 2023 14:59:55 -0700 Subject: Updating the git cookbook version Signed-off-by: John --- kitchen-tests/cookbooks/git/attributes/default.rb | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 kitchen-tests/cookbooks/git/attributes/default.rb diff --git a/kitchen-tests/cookbooks/git/attributes/default.rb b/kitchen-tests/cookbooks/git/attributes/default.rb new file mode 100644 index 0000000000..649c056519 --- /dev/null +++ b/kitchen-tests/cookbooks/git/attributes/default.rb @@ -0,0 +1,40 @@ +# +# 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. + +if platform_family?("windows") + default["git"]["version"] = "2.40.0" + if node["kernel"]["machine"] == "x86_64" + default["git"]["architecture"] = "64" + default["git"]["checksum"] = "ff8954afb29814821e9e3759a761bdac49186085e916fa354bf8706e3c7fe7a2" + else + default["git"]["architecture"] = "32" + default["git"]["checksum"] = "9b14e05c3ea00c51dc38838db23fccc6ccb21bfd42ed078bf406857fb47688d6" + 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 -- cgit v1.2.1