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

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

Issue 29481668: #1980 - Introduce puppet class adblockplus_web in updateserver module (Closed)
Patch Set: Created July 6, 2017, 2:20 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 | no next file » | 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 }
11 11
12 File { 12 File {
13 owner => root, 13 owner => root,
14 group => root 14 group => root
15 } 15 }
16 16
17 file {'/var/www': 17 class {'adblockplus::web':
mathias 2017/07/06 14:26:31 This should be a simple include.
18 ensure => directory, 18 directory => {
19 mode => '0755', 19 require => Package['nginx'],
20 require => Package['nginx'] 20 },
21 } 21 }
22 22
23 $update_dir = '/var/www/update' 23 $update_dir = '/var/www/update'
24 24
25 file {$update_dir: 25 file {$update_dir:
26 ensure => directory, 26 ensure => directory,
27 mode => '0755', 27 mode => '0755',
28 } 28 }
29 29
30 $sitescripts_var_dir = '/var/lib/sitescripts' 30 $sitescripts_var_dir = '/var/lib/sitescripts'
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld