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

Side by Side Diff: modules/nginx/templates/logrotate.erb

Issue 29785567: #11294 - Generate and store anonymized HTTPd logs (Closed)
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:
View unified diff | Download patch
« no previous file with comments | « modules/nginx/manifests/init.pp ('k') | modules/private-stub/hiera/base.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /var/log/nginx/<%= @log %> { 1 /var/log/nginx/<%= @log %> {
2 daily 2 daily
3 rotate 30 3 rotate 30
4 compress 4 compress
5 delaycompress 5 delaycompress
6 missingok 6 missingok
7 nodateext 7 nodateext
8 sharedscripts 8 sharedscripts
9 postrotate 9 postrotate
10 [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid` 10 [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
11 set -- <%= scope.function_shellquote([@log]) %>
12 set -- "/var/log/nginx/$1.2.gz" "/var/log/archive/$1"
13 [ ! -f "$1" ] || zcat "$1" | /usr/local/bin/anonymize-access-log \
14 --geolite2-db /usr/share/GeoIP/GeoLite2-Country.mmdb \
15 --salt <%= scope.function_shellquote([@log_salt]) %> \
16 | gzip -9 >"$2.`date +%Y-%m-%d`.`md5sum \"$1\" | cut -d' ' -f1`.gz"
11 endscript 17 endscript
12 } 18 }
OLDNEW
« no previous file with comments | « modules/nginx/manifests/init.pp ('k') | modules/private-stub/hiera/base.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld