OLD | NEW |
1 class filterserver { | 1 class filterserver { |
2 user {'subscriptionstat': | 2 user {'subscriptionstat': |
3 ensure => present, | 3 ensure => present, |
4 home => '/home/subscriptionstat', | 4 home => '/home/subscriptionstat', |
5 managehome => true | 5 managehome => true |
6 } | 6 } |
7 | 7 |
8 file {'/home/subscriptionstat/.ssh': | 8 file {'/home/subscriptionstat/.ssh': |
9 ensure => directory, | 9 ensure => directory, |
10 owner => subscriptionstat, | 10 owner => subscriptionstat, |
(...skipping 12 matching lines...) Expand all Loading... |
23 custom_configuration => 'Match User subscriptionstat | 23 custom_configuration => 'Match User subscriptionstat |
24 AllowTcpForwarding no | 24 AllowTcpForwarding no |
25 X11Forwarding no | 25 X11Forwarding no |
26 AllowAgentForwarding no | 26 AllowAgentForwarding no |
27 GatewayPorts no | 27 GatewayPorts no |
28 ForceCommand cat /var/www/subscriptionStats.ini' | 28 ForceCommand cat /var/www/subscriptionStats.ini' |
29 } | 29 } |
30 | 30 |
31 class {'nginx': | 31 class {'nginx': |
32 worker_processes => 2, | 32 worker_processes => 2, |
33 worker_connections => 4000 | 33 worker_connections => 4000, |
| 34 ssl_session_cache => off, |
34 } | 35 } |
35 | 36 |
36 class {'sitescripts': | 37 class {'sitescripts': |
37 sitescriptsini_source => 'puppet:///modules/filterserver/sitescripts.ini' | 38 sitescriptsini_source => 'puppet:///modules/filterserver/sitescripts.ini' |
38 } | 39 } |
39 | 40 |
40 package {'python-geoip':} | 41 package {'python-geoip':} |
41 | 42 |
42 user {'rsync': | 43 user {'rsync': |
43 ensure => present, | 44 ensure => present, |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 ensure => present, | 194 ensure => present, |
194 require => File['/opt/cron_geoipdb_update.sh'], | 195 require => File['/opt/cron_geoipdb_update.sh'], |
195 command => '/opt/cron_geoipdb_update.sh', | 196 command => '/opt/cron_geoipdb_update.sh', |
196 user => root, | 197 user => root, |
197 hour => 3, | 198 hour => 3, |
198 minute => 15, | 199 minute => 15, |
199 monthday => 3 | 200 monthday => 3 |
200 } | 201 } |
201 | 202 |
202 } | 203 } |
OLD | NEW |