| LEFT | RIGHT |
| (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 } |
| LEFT | RIGHT |