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

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

Issue 9351014: Add logrotate cronjob to all servers, don`t run logrotate unnecessarily on provisioning and use con… (Closed)
Left Patch Set: Created Feb. 7, 2013, 3:06 p.m.
Right Patch Set: Created Feb. 8, 2013, 8:19 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « modules/nginx/manifests/init.pp ('k') | 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
(no file at all)
1 class sitescripts ( 1 class sitescripts (
2 $sitescriptsini_source = undef 2 $sitescriptsini_source = undef
3 ){ 3 ){
4 4
5 file {'/etc/sitescripts.ini': 5 file {'/etc/sitescripts.ini':
6 mode => 644, 6 mode => 644,
7 owner => root, 7 owner => root,
8 group => root, 8 group => root,
9 source => $sitescriptsini_source 9 source => $sitescriptsini_source
10 } 10 }
11 11
12 exec { "fetch_sitescripts": 12 exec { "fetch_sitescripts":
13 command => "hg clone https://hg.adblockplus.org/sitescripts /opt/sitescripts ", 13 command => "hg clone https://hg.adblockplus.org/sitescripts /opt/sitescripts ",
14 path => [ "/usr/bin/", "/bin/" ], 14 path => ["/usr/bin/", "/bin/"],
15 require => Package['mercurial'], 15 require => Package['mercurial'],
16 onlyif => "test ! -d /opt/sitescripts" 16 onlyif => "test ! -d /opt/sitescripts"
17 } 17 }
18 } 18 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld