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

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

Issue 29785567: #11294 - Generate and store anonymized HTTPd logs (Closed)
Left Patch Set: Created May 18, 2018, 3:16 p.m.
Right Patch Set: #11294 - Include input MD5 sum with archive file names Created June 5, 2018, 2:29 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/web/adblockplus.yaml ('k') | modules/nginx/templates/logrotate.erb » ('j') | 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 nginx ( 1 class nginx (
2 $worker_processes = $nginx::params::worker_processes, 2 $worker_processes = $nginx::params::worker_processes,
3 $worker_connections = $nginx::params::worker_connections, 3 $worker_connections = $nginx::params::worker_connections,
4 $ssl_session_cache = $nginx::params::ssl_session_cache, 4 $ssl_session_cache = $nginx::params::ssl_session_cache,
5 $geoip_country = undef, 5 $geoip_country = undef,
6 $geoip_city = undef, 6 $geoip_city = undef,
7 ) inherits nginx::params { 7 ) inherits nginx::params {
8 8
9 # Class['ssh'] is assumed to handle SSL-related quirks and therefore 9 # Class['ssh'] is assumed to handle SSL-related quirks and therefore
10 # the inclusion here became necessary. 10 # the inclusion here became necessary.
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 source => 'puppet:///modules/nginx/anonymize-access-log.py', 264 source => 'puppet:///modules/nginx/anonymize-access-log.py',
265 } 265 }
266 266
267 file {'/var/log/archive': 267 file {'/var/log/archive':
268 ensure => 'directory', 268 ensure => 'directory',
269 group => 'adm', 269 group => 'adm',
270 mode => '0750', 270 mode => '0750',
271 owner => 'root', 271 owner => 'root',
272 } 272 }
273 } 273 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld