control-repo/site/profile/manifests/linux_baseline.pp
2018-09-21 10:41:52 -07:00

15 lines
227 B
Puppet

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