| Index: modules/adblockplus/manifests/init.pp |
| diff --git a/modules/adblockplus/manifests/init.pp b/modules/adblockplus/manifests/init.pp |
| index 0a5392827448a4b40b2501aca97071b0ff3ff8b6..300c20c3c59e4aeca228f5fe672085c0ae88798f 100644 |
| --- a/modules/adblockplus/manifests/init.pp |
| +++ b/modules/adblockplus/manifests/init.pp |
| @@ -45,6 +45,22 @@ class adblockplus ( |
| owner => 'root', |
| } |
| + # A common time-zone shared by all hosts provisioned eases synchronization |
| + # and debugging, i.e. log-file review and similar tasks, significantly |
| + file { |
| + '/etc/timezone': |
| + content => 'UTC', |
| + ensure => 'present', |
| + group => 'root', |
| + mode => 0644, |
| + notify => Service['cron'], |
| + owner => 'root'; |
| + '/etc/localtime': |
| + ensure => 'link', |
| + target => '/usr/share/zoneinfo/UTC', |
| + notify => Service['cron']; |
| + } |
| + |
| # Work around https://issues.adblockplus.org/ticket/3479 |
| if $::environment == 'development' { |