Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/filterserver/manifests/init.pp

Issue 9428006: Disable SSL cache on download servers (Closed)
Patch Set: Created Feb. 20, 2013, 9:49 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | modules/nginx/manifests/init.pp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | modules/nginx/manifests/init.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld