class ntp::params { $autoupdate = false $config_template = 'ntp/ntp.conf.erb' $disable_monitor = false $keys_enable = false $keys_controlkey = '' $keys_requestkey = '' $keys_trusted = [] $package_ensure = 'present' $preferred_servers = [] $service_enable = true $service_ensure = 'running' $service_manage = true $udlc = false # On virtual machines allow large clock skews. $panic = str2bool($::is_virtual) ? { true => false, default => true, } $default_config = '/etc/ntp.conf' $default_keys_file = '/etc/ntp/keys' $default_driftfile = '/var/lib/ntp/drift' $default_package_name = ['ntp'] $default_service_name = 'ntpd' case $::osfamily { 'AIX': { $keys_file = '/etc/ntp.keys' $driftfile = '/etc/ntp.drift' $package_name = [ 'bos.net.tcp.client' ] $restrict = [ 'default nomodify notrap nopeer noquery', '127.0.0.1', ] $service_name = 'xntpd' $servers = [ '0.debian.pool.ntp.org iburst', '1.debian.pool.ntp.org iburst', '2.debian.pool.ntp.org iburst', '3.debian.pool.ntp.org iburst', ] } 'Debian': { $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $service_name = 'ntp' $servers = [ '0.debian.pool.ntp.org iburst', '1.debian.pool.ntp.org iburst', '2.debian.pool.ntp.org iburst', '3.debian.pool.ntp.org iburst', ] } 'RedHat': { $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $servers = [ '0.centos.pool.ntp.org', '1.centos.pool.ntp.org', '2.centos.pool.ntp.org', ] } 'SuSE': { $driftfile = '/var/lib/ntp/drift/ntp.drift' $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $service_name = 'ntp' $servers = [ '0.opensuse.pool.ntp.org', '1.opensuse.pool.ntp.org', '2.opensuse.pool.ntp.org', '3.opensuse.pool.ntp.org', ] } 'FreeBSD': { $driftfile = '/var/db/ntpd.drift' $package_name = ['net/ntp'] $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $servers = [ '0.freebsd.pool.ntp.org iburst maxpoll 9', '1.freebsd.pool.ntp.org iburst maxpoll 9', '2.freebsd.pool.ntp.org iburst maxpoll 9', '3.freebsd.pool.ntp.org iburst maxpoll 9', ] } 'Archlinux': { $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $servers = [ '0.pool.ntp.org', '1.pool.ntp.org', '2.pool.ntp.org', ] } # Gentoo was added as its own $::osfamily in Facter 1.7.0 'Gentoo': { $package_name = ['net-misc/ntp'] $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $servers = [ '0.gentoo.pool.ntp.org', '1.gentoo.pool.ntp.org', '2.gentoo.pool.ntp.org', '3.gentoo.pool.ntp.org', ] } 'Linux': { # Account for distributions that don't have $::osfamily specific settings. # Before Facter 1.7.0 Gentoo did not have its own $::osfamily case $::operatingsystem { 'Gentoo': { $package_name = ['net-misc/ntp'] $restrict = [ 'default kod nomodify notrap nopeer noquery', '-6 default kod nomodify notrap nopeer noquery', '127.0.0.1', '-6 ::1', ] $servers = [ '0.gentoo.pool.ntp.org', '1.gentoo.pool.ntp.org', '2.gentoo.pool.ntp.org', '3.gentoo.pool.ntp.org', ] } default: { fail("The ${module_name} module is not supported on an ${::operatingsystem} distribution.") } } } default: { fail("The ${module_name} module is not supported on an ${::osfamily} based system.") } } if $config == undef { $config = $default_config } if $keys_file == undef { $keys_file = $default_keys_file } if $drfitfile == undef { $driftfile = $default_driftfile } if $package_name == undef { $package_name = $default_package_name } if $service_name == undef { $service_name = $default_service_name } }