canmove, Confirmed users
2,850
edits
ChrisCooper (talk | contribs) |
ChrisCooper (talk | contribs) |
||
| Line 21: | Line 21: | ||
=== Firefox === | === Firefox === | ||
# Delete all installer and xpi files/dirs older than 6 months | |||
@weekly nice -n 19 find /home/ftp/pub/firefox/nightly -mtime +180 \( -name '*.installer.*' -o -name '*xpi' \) -exec rm -rf '{}' \; | @weekly nice -n 19 find /home/ftp/pub/firefox/nightly -mtime +180 \( -name '*.installer.*' -o -name '*xpi' \) -exec rm -rf '{}' \; | ||
# Delete all MAR files older than 1 month that aren't in a candidates dir. | |||
@weekly nice -n 19 find /home/ftp/pub/firefox/nightly -wholename '*-candidates' -prune -o -mtime +30 -name '*.mar' -exec rm -f '{}' \; | |||
# Delete empty dirs | |||
@weekly nice -n 19 find /home/ftp/pub/firefox/nightly -depth -empty -type d rmdir '{}' \; | @weekly nice -n 19 find /home/ftp/pub/firefox/nightly -depth -empty -type d rmdir '{}' \; | ||
=== Thunderbird === | === Thunderbird === | ||
# Delete all msi, zip and xpi files/dirs older than 6 months | # Delete all msi, zip and xpi files/dirs older than 6 months | ||