chef/cookbooks/git/libraries/provider_git_client_osx.rb
Sebastian Kippe 0005f9ab7d
Add golang cookbook
Needs updating of ark and git cookbooks
2020-08-23 11:01:05 +02:00

17 lines
274 B
Ruby

class Chef
class Provider
class GitClient
class Osx < Chef::Provider::GitClient
provides :git_client, platform: 'mac_os_x'
action :install do
package 'git'
end
action :delete do
end
end
end
end
end