control-repo/site/profile/manifests/linux_baseline.pp
2019-01-08 20:40:47 -05:00

15 lines
228 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,
}
}