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

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

Issue 29448574: Noissue - Use of spawn_fcgi module instead of spawn-fcgi (Closed)
Patch Set: Created May 25, 2017, 4:55 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 | « modules/trac/manifests/init.pp ('k') | modules/web/manifests/server.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 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 ) { 6 ) {
7 class {'nginx': 7 class {'nginx':
8 worker_connections => 4000, 8 worker_connections => 4000,
9 ssl_session_cache => off, 9 ssl_session_cache => off,
10 } 10 }
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 130
131 cron {'update_update_manifests': 131 cron {'update_update_manifests':
132 ensure => present, 132 ensure => present,
133 command => $update_update_manifests_script, 133 command => $update_update_manifests_script,
134 user => 'sitescripts', 134 user => 'sitescripts',
135 minute => '*/10', 135 minute => '*/10',
136 require => Exec['update_update_manifests'] 136 require => Exec['update_update_manifests']
137 } 137 }
138 138
139 include spawn-fcgi 139 include spawn_fcgi
140 140
141 spawn-fcgi::pool {"multiplexer": 141 spawn_fcgi::pool {"multiplexer":
142 ensure => present, 142 ensure => present,
143 fcgi_app => '/opt/sitescripts/multiplexer.fcgi', 143 fcgi_app => '/opt/sitescripts/multiplexer.fcgi',
144 socket => '/tmp/multiplexer-fastcgi.sock', 144 socket => '/tmp/multiplexer-fastcgi.sock',
145 mode => '0666', 145 mode => '0666',
146 user => 'nginx', 146 user => 'nginx',
147 children => 1, 147 children => 1,
148 require => [ 148 require => [
149 Class["sitescripts"], 149 Class["sitescripts"],
150 ], 150 ],
151 } 151 }
152 } 152 }
OLDNEW
« no previous file with comments | « modules/trac/manifests/init.pp ('k') | modules/web/manifests/server.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld