| OLD | NEW |
| 1 class filterserver($is_default = false) { | 1 class filterserver($is_default = false) { |
| 2 if !defined(Class['nginx']) { | 2 if !defined(Class['nginx']) { |
| 3 class {'nginx': | 3 class {'nginx': |
| 4 worker_processes => 2, | |
| 5 worker_connections => 4000, | 4 worker_connections => 4000, |
| 6 ssl_session_cache => off, | 5 ssl_session_cache => off, |
| 7 } | 6 } |
| 8 } | 7 } |
| 9 | 8 |
| 10 if !defined(File['/var/www']) { | 9 if !defined(File['/var/www']) { |
| 11 file {'/var/www': | 10 file {'/var/www': |
| 12 ensure => directory, | 11 ensure => directory, |
| 13 owner => nginx, | 12 owner => nginx, |
| 14 mode => 0755, | 13 mode => 0755, |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 File['/home/rsync/.ssh/id_rsa'], | 99 File['/home/rsync/.ssh/id_rsa'], |
| 101 User['rsync'] | 100 User['rsync'] |
| 102 ], | 101 ], |
| 103 command => 'rsync -e "ssh -o CheckHostIP=no" -ltprz --delete rsync@filtermas
ter.adblockplus.org:. /var/www/easylist/', | 102 command => 'rsync -e "ssh -o CheckHostIP=no" -ltprz --delete rsync@filtermas
ter.adblockplus.org:. /var/www/easylist/', |
| 104 environment => ['MAILTO=admins@adblockplus.org,root'], | 103 environment => ['MAILTO=admins@adblockplus.org,root'], |
| 105 user => rsync, | 104 user => rsync, |
| 106 hour => '*', | 105 hour => '*', |
| 107 minute => '2-52/10' | 106 minute => '2-52/10' |
| 108 } | 107 } |
| 109 } | 108 } |
| OLD | NEW |