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

Delta Between Two Patch Sets: modules/downloadserver/manifests/init.pp

Issue 29481662: #1980 - Introduce puppet class adblockplus_web in downloadserver module (Closed)
Left Patch Set: For comment 2 Created July 6, 2017, 2:34 p.m.
Right Patch Set: Leave mode out Created July 6, 2017, 5:08 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « hiera/roles/downloadserver.yaml ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 class downloadserver( 1 class downloadserver(
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
8 include adblockplus::web
7 9
8 class {'nginx': 10 class {'nginx':
9 worker_connections => 4000, 11 worker_connections => 4000,
10 ssl_session_cache => off, 12 ssl_session_cache => off,
11 } 13 }
12 14
13 class {'sitescripts': 15 class {'sitescripts':
14 sitescriptsini_source => 'puppet:///modules/downloadserver/sitescripts', 16 sitescriptsini_source => 'puppet:///modules/downloadserver/sitescripts',
15 } 17 }
16 18
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 ensure => present, 112 ensure => present,
111 require => [File['/home/rsync/.ssh/id_rsa'], 113 require => [File['/home/rsync/.ssh/id_rsa'],
112 File['/var/www/devbuilds']], 114 File['/var/www/devbuilds']],
113 command => 'rsync -e ssh -ltprz --delete devbuilds@server16.adblockplus.org: . /var/www/devbuilds', 115 command => 'rsync -e ssh -ltprz --delete devbuilds@server16.adblockplus.org: . /var/www/devbuilds',
114 environment => hiera('cron::environment', []), 116 environment => hiera('cron::environment', []),
115 user => rsync, 117 user => rsync,
116 hour => '*', 118 hour => '*',
117 minute => '4-54/10' 119 minute => '4-54/10'
118 } 120 }
119 } 121 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld