# == Class: egg # # Full description of class egg here. # # === Parameters # # Document parameters here. # # [*sample_parameter*] # Explanation of what this parameter affects and what it defaults to. # e.g. "Specify one or more upstream ntp servers as an array. Defaults # to []." # # === Examples # # @example # class { 'egg': # sample_parameter => [ 'pool.ntp.org', 'ntp.local.company.com' ], # } # # === Authors # # Author Name <author.name@liu.se> # # === Copyright # # Copyright 2019 Linköping University # class egg( Array[String] $sample_parameter = [] ) { file { '/tmp/example.file': content => epp("${module_name}/example.epp"), } }