Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 |
19 cron {"update_sitescripts": | 19 cron {"update_sitescripts": |
Felix Dahlke
2013/07/25 08:17:03
When is this job going to run if we don't specify
Wladimir Palant
2013/07/26 11:38:23
Every minute, this ensures that changes propagate
| |
20 ensure => present, | 20 ensure => present, |
21 command => "hg pull -q -u -R /opt/sitescripts", | 21 command => "hg pull -q -u -R /opt/sitescripts", |
22 user => root | 22 user => root, |
23 require => Exec["fetch_sitescripts"], | |
23 } | 24 } |
24 } | 25 } |
LEFT | RIGHT |