diff --git a/modules/time/manifests/init.pp b/modules/time/manifests/init.pp index a53340d..864fe4d 100644 --- a/modules/time/manifests/init.pp +++ b/modules/time/manifests/init.pp @@ -1,10 +1,15 @@ +# takes care of everything related to time class time { - class { '::chrony': + class { 'chrony': servers => { - "ptbtime1.ptb.de"=>["iburst"], - "ptbtime2.ptb.de"=>["iburst"], - "ptbtime3.ptb.de"=>["iburst"], - "ptbtime4.ptb.de"=>["iburst"], + 'ptbtime1.ptb.de' => ['iburst'], + 'ptbtime2.ptb.de' => ['iburst'], + 'ptbtime3.ptb.de' => ['iburst'], + 'ptbtime4.ptb.de' => ['iburst'], }, } + service { 'systemd-timesyncd.service': + ensure => stopped, + enable => false, + } }