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

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

Issue 4734126921875456: Issue 1763 - Extend update_update_manifests by timeouts (Closed)
Patch Set: Created Jan. 7, 2015, 9:17 p.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/updateserver/templates/update_update_manifests.erb » ('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 updateserver( 1 class updateserver(
2 $domain, 2 $domain,
3 $certificate, 3 $certificate,
4 $private_key, 4 $private_key,
5 $is_default=false 5 $is_default=false,
6 $update_manifest_timeout='5m',
6 ) { 7 ) {
7 class {'nginx': 8 class {'nginx':
8 worker_processes => 2, 9 worker_processes => 2,
9 worker_connections => 4000, 10 worker_connections => 4000,
10 ssl_session_cache => off, 11 ssl_session_cache => off,
11 } 12 }
12 13
13 File { 14 File {
14 owner => root, 15 owner => root,
15 group => root 16 group => root
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 socket => '/tmp/multiplexer-fastcgi.sock', 132 socket => '/tmp/multiplexer-fastcgi.sock',
132 mode => '0666', 133 mode => '0666',
133 user => 'nginx', 134 user => 'nginx',
134 children => 1, 135 children => 1,
135 require => [ 136 require => [
136 Exec["fetch_sitescripts"], 137 Exec["fetch_sitescripts"],
137 Package["python-flup"], 138 Package["python-flup"],
138 ], 139 ],
139 } 140 }
140 } 141 }
OLDNEW
« no previous file with comments | « no previous file | modules/updateserver/templates/update_update_manifests.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld