summaryrefslogtreecommitdiff
path: root/examples/hiera/modules/ntp/manifests/config.pp
blob: 0638ad1d8f25327dedb3fdf43b4e75cd72545af2 (plain)
1
2
3
4
5
6
# lookup ntpservers from hiera, or allow user of class to provide other value
class ntp::config($ntpservers = hiera('ntpservers')) {
  file{'/tmp/ntp.conf':
    content => template('ntp/ntp.conf.erb')
  }
}