# HG changeset patch # User IBBoard # Date 1577652960 0 # Node ID edeedd13262c268dd9a7f507c606ef4c3753235f # Parent 298211899626e42570caf7c8fa1ee2178e249b84 Set a sensible default timezone for VPS diff -r 298211899626 -r edeedd13262c manifests/templates.pp --- a/manifests/templates.pp Sun Dec 29 16:58:25 2019 +0000 +++ b/manifests/templates.pp Sun Dec 29 20:56:00 2019 +0000 @@ -526,6 +526,12 @@ firewall_cmd => $firewall_cmd, } + # Set timezone to something sensible + file { "/etc/localtime": + ensure => 'link', + target => '/usr/share/zoneinfo/Europe/London', + } + # Common modules used by multiple sites (mod_auth_basic is safe because we HTTPS all the things) $mods = [ 'auth_basic', 'authn_file',