Skip to content
Snippets Groups Projects
Commit e1178fce authored by schiermi's avatar schiermi
Browse files

Added timezone configuration.

parent dbbb6e92
No related branches found
No related tags found
No related merge requests found
......@@ -88,8 +88,18 @@ class system {
notify => Exec['systemd-reload'],
}
package { 'tzdata':
ensure => installed,
}
file { '/etc/localtime':
source => 'file:///usr/share/zoneinfo/Europe/Berlin',
require => Package["tzdata"],
}
package { 'chrony':
ensure => installed,
require => File['/etc/localtime'],
}
service { 'chrony':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment