control-repo/site/profile/manifests/windows_baseline.pp
2018-08-20 22:16:14 -07:00

17 lines
298 B
Puppet

# @summary This profile installs unzip and git as part of the Windows baseline
class profile::windows_baseline {
include chocolatey
package { 'unzip':
ensure => installed,
provider => chocolatey,
}
package { 'git':
ensure => installed,
provider => chocolatey,
}
}