Reduce logs and docs-draft retention

Logs are now 4 months instead of 6, docs-draft 3 weeks instead of 4.

Both have unsustainable upward trajectories.

Change-Id: If8ae334c9b48bdacc79b71015fbf386c0f3613f6
This commit is contained in:
James E. Blair 2014-04-16 07:10:18 -07:00
parent 26766fd38d
commit 86830dc5ad

View File

@ -8,13 +8,13 @@ find -O3 /srv/static/logs/ -depth \
-not -name \*\[.-\]gz -not -name \*\[._-\]\[zZ\] \
\( -name \*.txt -or -name \*.html -or -name tmp\* \) \
-exec gzip \{\} \; \) \
-o \( -type f -mtime +183 -name \*.gz -execdir rm \{\} \; \) \
-o \( -type f -mtime +120 -name \*.gz -execdir rm \{\} \; \) \
-o \( -type d -not -name lost+found -empty -mtime +1 \
-execdir rmdir {} \; \) \
\)
find -O3 /srv/static/docs-draft/ -depth \
\( \
\( -type f -mtime +30 -name \*.gz -execdir rm \{\} \; \) \
\( -type f -mtime +21 -name \*.gz -execdir rm \{\} \; \) \
-o \( -type d -not -name lost+found -empty -mtime +1 \
-execdir rmdir {} \; \) \
\)