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

Delta Between Two Patch Sets: modules/base/manifests/init.pp

Issue 10997090: Notify cron when we change the timezone (Closed)
Left Patch Set: Created June 28, 2013, 10:46 a.m.
Right Patch Set: Created July 9, 2013, 3:38 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 class base { 1 class base {
2 stage {'pre': before => Stage['main']} 2 stage {'pre': before => Stage['main']}
3 stage {'post': require => Stage['main']} 3 stage {'post': require => Stage['main']}
4 4
5 class {'users': 5 class {'users':
6 stage => 'pre', 6 stage => 'pre',
7 } 7 }
8 8
9 class {'apt': 9 class {'apt':
10 always_apt_update => true 10 always_apt_update => true
(...skipping 13 matching lines...) Expand all
24 content => 'UTC', 24 content => 'UTC',
25 notify => Service['cron'] 25 notify => Service['cron']
26 } 26 }
27 27
28 file {'/etc/localtime': 28 file {'/etc/localtime':
29 ensure => link, 29 ensure => link,
30 target => '/usr/share/zoneinfo/UTC', 30 target => '/usr/share/zoneinfo/UTC',
31 notify => Service['cron'] 31 notify => Service['cron']
32 } 32 }
33 33
34 service {'cron':
35 ensure => running,
36 enable => true,
37 }
38
34 class {'logrotate': 39 class {'logrotate':
35 stage => 'post' 40 stage => 'post'
36 } 41 }
37 } 42 }
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld