Skip to content

Instantly share code, notes, and snippets.

@initcron
Created June 21, 2015 07:13
Show Gist options
  • Select an option

  • Save initcron/1d90949fa9952de0bd03 to your computer and use it in GitHub Desktop.

Select an option

Save initcron/1d90949fa9952de0bd03 to your computer and use it in GitHub Desktop.
init.pp for ntp class, parameterized clases
class ntp($server = undef) {
package { 'ntp':
ensure => installed,
}
file { '/etc/ntp.conf':
content => template('ntp/ntp.conf.erb'),
notify => Service['ntpd'],
}
service { 'ntpd':
ensure => running,
enable => true,
require => [ Package['ntp'], File['/etc/ntp.conf'] ],
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment