Sha256: 5b3b9e5b15a4b868df7ce3e1411431e89fa70767b3ffda98d232ffc7ba0dbd52

Contents?: true

Size: 572 Bytes

Versions: 2

Compression:

Stored size: 572 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.8.1 acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/recipes/default.rb
chef-12.8.1-universal-mingw32 acceptance/top-cookbooks/test_run/git/test/fixtures/cookbooks/git_test/recipes/default.rb