stopped the timesyncd
Dieser Commit ist enthalten in:
Ursprung
e046fd1626
Commit
c3840d212f
1 geänderte Dateien mit 10 neuen und 5 gelöschten Zeilen
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
In neuem Issue referenzieren