| OLD | NEW |
| 1 class statsmaster::downloads { | 1 class statsmaster::downloads { |
| 2 package {['pypy', 'python-jinja2']:} | 2 package {['pypy', 'python-jinja2']:} |
| 3 | 3 |
| 4 class {'sitescripts': | 4 class {'sitescripts': |
| 5 sitescriptsini_source => 'puppet:///modules/statsmaster/sitescripts.ini', | 5 sitescriptsini_content => template('statsmaster/sitescripts.ini.erb'), |
| 6 } | 6 } |
| 7 | 7 |
| 8 file {['/var/www/stats', '/var/www/statsdata']: | 8 file {['/var/www/stats', '/var/www/statsdata']: |
| 9 ensure => directory, | 9 ensure => directory, |
| 10 mode => 0755, | 10 mode => 0755, |
| 11 owner => stats, | 11 owner => stats, |
| 12 } | 12 } |
| 13 | 13 |
| 14 file {'/var/www/statsdata/usercounts.html': | 14 file {'/var/www/statsdata/usercounts.html': |
| 15 ensure => file, | 15 ensure => file, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 26 Exec["fetch_sitescripts"] | 26 Exec["fetch_sitescripts"] |
| 27 ], | 27 ], |
| 28 command => "pypy -m sitescripts.stats.bin.logprocessor && python -m sitescri
pts.stats.bin.pagegenerator", | 28 command => "pypy -m sitescripts.stats.bin.logprocessor && python -m sitescri
pts.stats.bin.pagegenerator", |
| 29 environment => ['MAILTO=admins@adblockplus.org,root', | 29 environment => ['MAILTO=admins@adblockplus.org,root', |
| 30 'PYTHONPATH=/opt/sitescripts'], | 30 'PYTHONPATH=/opt/sitescripts'], |
| 31 user => stats, | 31 user => stats, |
| 32 hour => 1, | 32 hour => 1, |
| 33 minute => 30, | 33 minute => 30, |
| 34 } | 34 } |
| 35 } | 35 } |
| OLD | NEW |