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

13 lines
212 B
Puppet

# @summary This profile installs unzip and git as part of the Linux baseline
class profile::linux_baseline {
package { 'unzip':
ensure => installed,
}
package { 'git':
ensure => installed,
}
}