Sha256: 30527058f2ab097b2c212aeb5c458d36d1c6ef1ba1a24242b9326a089d442289

Contents?: true

Size: 564 Bytes

Versions: 7

Compression:

Stored size: 564 Bytes

Contents

# The profile class include the classes instantiation or
# puppet/modules type resource definitions.
# It can include hiera calls for the parametter setting.
# Example:
# class profiles::category::technology {
#   $technology_parameters = hiera("technology")
#   $parameter1 = technology_parameters[parameter1]
#   ...
#   class { "technology_resource":
#     parameter1  => $parameter1
#     ...
#   }
# }

class profiles::test::profile_0 {
  $packages = hiera("packages")
  each($packages) |$package| {
    package { $package:
      ensure => present
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bebox-0.1.5 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
bebox-0.1.4 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
bebox-0.1.3 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
bebox-0.1.2 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
bebox-0.1.1 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
bebox-0.1.0 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test
bebox-0.0.1 spec/fixtures/puppet/profiles/test/profile_0/manifests/init_with_content.pp.test