| Index: modules/base/manifests/init.pp |
| =================================================================== |
| --- a/modules/base/manifests/init.pp |
| +++ b/modules/base/manifests/init.pp |
| @@ -16,20 +16,22 @@ class base { |
| package {['mercurial', 'vim', 'emacs']: ensure => present} |
| file {'/etc/timezone': |
| ensure => file, |
| owner => root, |
| group => root, |
| mode => 0644, |
| - content => 'UTC' |
| + content => 'UTC', |
| + notify => Service['cron'] |
| } |
| file {'/etc/localtime': |
| ensure => link, |
| - target => '/usr/share/zoneinfo/UTC' |
| + target => '/usr/share/zoneinfo/UTC', |
| + notify => Service['cron'] |
| } |
| class {'logrotate': |
| stage => 'post' |
| } |
| } |