OLD | NEW |
1 class filterserver { | 1 class filterserver { |
2 class {'nginx': | 2 class {'nginx': |
3 worker_processes => 2, | 3 worker_processes => 2, |
4 worker_connections => 4000, | 4 worker_connections => 4000, |
5 ssl_session_cache => off, | 5 ssl_session_cache => off, |
6 } | 6 } |
7 | 7 |
8 class {'statsclient': | 8 class {'statsclient': |
9 log_path => '/var/log/nginx/access_log_easylist_downloads.1.gz', | 9 log_path => '/var/log/nginx/access_log_easylist_downloads.1.gz', |
10 } | 10 } |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 ], | 121 ], |
122 owner => rsync, | 122 owner => rsync, |
123 mode => 0400, | 123 mode => 0400, |
124 source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.or
g.pub' | 124 source => 'puppet:///modules/private/rsync@easylist-downloads.adblockplus.or
g.pub' |
125 } | 125 } |
126 | 126 |
127 cron {'mirror': | 127 cron {'mirror': |
128 ensure => present, | 128 ensure => present, |
129 require => [ | 129 require => [ |
130 File['/home/rsync/.ssh/known_hosts'], | 130 File['/home/rsync/.ssh/known_hosts'], |
131 File['/home/rsync/.ssh/id_rsa'], | 131 File['/home/rsync/.ssh/id_ecdsa'], |
132 User['rsync'] | 132 User['rsync'] |
133 ], | 133 ], |
134 command => 'rsync -e ssh -ltprz --delete rsync@filtermaster.adblockplus.org:
. /var/www/easylist/', | 134 command => 'rsync -e "ssh -o CheckHostIP=no" -ltprz --delete rsync@filtermas
ter.adblockplus.org:. /var/www/easylist/', |
135 environment => ['MAILTO=admins@adblockplus.org,root'], | 135 environment => ['MAILTO=admins@adblockplus.org,root'], |
136 user => rsync, | 136 user => rsync, |
137 hour => '*', | 137 hour => '*', |
138 minute => '2-52/10' | 138 minute => '2-52/10' |
139 } | 139 } |
140 } | 140 } |
OLD | NEW |