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

Delta Between Two Patch Sets: modules/web/manifests/server.pp

Issue 29784619: #11294 - Apply workaround for broken pip package in Debian "jessie" (Closed)
Left Patch Set: Created May 18, 2018, 12:28 a.m.
Right Patch Set: #11294 - Address feedback from codereview Created May 18, 2018, 1:29 a.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 | « modules/updateserver/manifests/init.pp ('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 web::server( 1 class web::server(
2 $vhost, 2 $vhost,
3 $repository, 3 $repository,
4 $certificate = hiera('web::server::certificate', 'undef'), 4 $certificate = hiera('web::server::certificate', 'undef'),
5 $private_key = hiera('web::server::private_key', 'undef'), 5 $private_key = hiera('web::server::private_key', 'undef'),
6 $is_default = false, 6 $is_default = false,
7 $aliases = undef, 7 $aliases = undef,
8 $custom_config = undef, 8 $custom_config = undef,
9 $multiplexer_locations = undef, 9 $multiplexer_locations = undef,
10 $geoip = false, 10 $geoip = false,
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 ) 179 )
180 180
181 cron {'update_repo': 181 cron {'update_repo':
182 ensure => present, 182 ensure => present,
183 command => $update_webpage_cmd, 183 command => $update_webpage_cmd,
184 user => www, 184 user => www,
185 minute => '5-59/20', 185 minute => '5-59/20',
186 } 186 }
187 187
188 } 188 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld