Puppet Class: psick::time::ntpdate

Defined in:
manifests/time/ntpdate.pp

Overview

This class installs and runs once ntpdate

Parameters:

  • crontab (String) (defaults to: '')
  • ntp_server (String) (defaults to: 'pool.ntp.org')


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'manifests/time/ntpdate.pp', line 2

class psick::time::ntpdate (
  # If given a ntpdate cron jon is scheduled. Format: * * * * *
  String $crontab    = '',

  # Server to sync to (just one)
  String $ntp_server = 'pool.ntp.org',
) {

  tp::install { 'ntpdate': }

  exec { "ntpdate -s ${ntp_server}":
    subscribe   => Tp::Install['ntpdate'],
    refreshonly => true,
    path        => $::path
  }
  if $crontab != '' and $::virtual != 'docker' {
    file { '/etc/cron.d/ntpdate':
      content => "${crontab} root ntpdate -s ${ntp_server}\n",
    }
  }
}