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

Side by Side Diff: modules/sitescripts/manifests/init.pp

Issue 11202005: Update sitescripts automatically (Closed)
Patch Set: Created July 26, 2013, 11:37 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
19 cron {"update_sitescripts":
20 ensure => present,
21 command => "hg pull -q -u -R /opt/sitescripts",
22 user => root,
23 require => Exec["fetch_sitescripts"],
24 }
18 } 25 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld