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

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

Issue 29632971: #5944 - Use abpssembly to update update manifests (Closed)
Patch Set: Created Dec. 7, 2017, 2:46 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
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 7
8 include adblockplus::abpssembly
8 include adblockplus::web 9 include adblockplus::web
9 10
10 class {'nginx': 11 class {'nginx':
11 worker_connections => 4000, 12 worker_connections => 4000,
12 ssl_session_cache => off, 13 ssl_session_cache => off,
13 } 14 }
14 15
15 File { 16 File {
16 owner => root, 17 owner => root,
17 group => root 18 group => root
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 fcgi_app => '/opt/sitescripts/multiplexer.fcgi', 141 fcgi_app => '/opt/sitescripts/multiplexer.fcgi',
141 socket => '/tmp/multiplexer-fastcgi.sock', 142 socket => '/tmp/multiplexer-fastcgi.sock',
142 mode => '0666', 143 mode => '0666',
143 user => 'nginx', 144 user => 'nginx',
144 children => 1, 145 children => 1,
145 require => [ 146 require => [
146 Class["sitescripts"], 147 Class["sitescripts"],
147 ], 148 ],
148 } 149 }
149 } 150 }
OLDNEW
« no previous file with comments | « modules/private-stub/files/adblockplussafari.pem ('k') | modules/updateserver/templates/update_update_manifests.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld