aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/puppet.pp
blob: ab1be9273c094810bcd61bdf51cea8f2a42dc997 (plain)
1
2
3
4
5
6
7
8
9
10
class nodo::utils::development::puppet (
  $ensure = 'installed',
) {
  package { [
    'puppet-lint',
    'hiera-eyaml',
  ]:
    ensure => $ensure,
  }
}