Sha256: 6543e001a7409f7918c75f0ffd13fd8c383204ed0260e1380ac2993bdb8f5bff

Contents?: true

Size: 542 Bytes

Versions: 2

Compression:

Stored size: 542 Bytes

Contents

user 'random' do
  supports manage_home: true
  home '/home/random'
end

git_config 'add name to random' do
  user 'random'
  scope 'global'
  key 'user.name'
  value 'John Doe global'
end

git '/home/random/git_repo' do
  repository 'https://github.com/chef/chef-repo.git'
  user 'random'
end

git_config 'change local path' do
  user 'random'
  scope 'local'
  key 'user.name'
  value 'John Doe local'
  path '/home/random/git_repo'
end

git_config 'change system config' do
  scope 'system'
  key 'user.name'
  value 'John Doe system'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chef-12.11.18-universal-mingw32 acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/recipes/default.rb
chef-12.11.18 acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/recipes/default.rb