canmove, Confirmed users
2,850
edits
ChrisCooper (talk | contribs) No edit summary |
ChrisCooper (talk | contribs) |
||
| Line 24: | Line 24: | ||
@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 | |||
@weekly nice -n 19 find /home/ftp/pub/thunderbird/nightly -mtime +180 \( -name '*.zip' -o -name '*xpi' -o -name '*.msi'\) -exec rm -rf '{}' \; | @weekly nice -n 19 find /home/ftp/pub/thunderbird/nightly -mtime +180 \( -name '*.zip' -o -name '*xpi' -o -name '*.msi'\) -exec rm -rf '{}' \; | ||
@weekly nice -n 19 find /home/ftp/pub/thunderbird/nightly -depth -empty -type d rmdir '{}' \; | |||
# Delete all MAR files older than 1 month that aren't in a candidates dir. | |||
# @weekly nice -n 19 find /home/ftp/pub/thunderbird/nightly -wholename '*-candidates' -prune -o -mtime +30 -name '*.mar' -exec rm -f '{}' \; | |||
# Delete empty dirs | |||
#@weekly nice -n 19 find /home/ftp/pub/thunderbird/nightly -depth -empty -type d rmdir '{}' \; | |||
=== SeaMonkey === | === SeaMonkey === | ||