From: Tom Hughes Date: Fri, 8 Jun 2018 14:34:26 +0000 (+0100) Subject: Make timezone configuration actually work X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/52ea26af550fbc6289f3ea5e003b21d1d267775e Make timezone configuration actually work --- diff --git a/cookbooks/ntp/recipes/default.rb b/cookbooks/ntp/recipes/default.rb index 3cefe3c46..7be4ab437 100644 --- a/cookbooks/ntp/recipes/default.rb +++ b/cookbooks/ntp/recipes/default.rb @@ -32,11 +32,10 @@ execute "dpkg-reconfigure-tzdata" do group "root" end -file "/etc/timezone" do +link "/etc/localtime" do + to "/usr/share/zoneinfo/#{node[:tz]}" owner "root" group "root" - mode 0o644 - content "#{node[:tz]}\n" notifies :run, "execute[dpkg-reconfigure-tzdata]", :immediately end