Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/base/manifests/init.pp

Issue 10997090: Notify cron when we change the timezone (Closed)
Patch Set: Created July 9, 2013, 3:38 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/base/manifests/init.pp
===================================================================
--- a/modules/base/manifests/init.pp
+++ b/modules/base/manifests/init.pp
@@ -26,12 +26,17 @@ class base {
}
file {'/etc/localtime':
ensure => link,
target => '/usr/share/zoneinfo/UTC',
notify => Service['cron']
}
+ service {'cron':
+ ensure => running,
+ enable => true,
+ }
+
class {'logrotate':
stage => 'post'
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld