From 2e1e072e67cc44f4d76360553443f54c8a1bcd15 Mon Sep 17 00:00:00 2001 From: Ossi Herrala Date: Mon, 19 Dec 2011 15:45:40 +0200 Subject: [PATCH] Content for Ubuntu's /etc/timezone. --- time/manifests/init.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/time/manifests/init.pp b/time/manifests/init.pp index 90e7b2d..10612c7 100644 --- a/time/manifests/init.pp +++ b/time/manifests/init.pp @@ -29,5 +29,12 @@ class time::zone { content => template("time/sysconfig_clock.erb"), } } + ubuntu: { + file { "/etc/timezone": + ensure => present, + mode => 0644, + content => "$timezone_set\n", + } + } } }