This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
start:cron [2016/07/19 16:46] andre created |
start:cron [2018/01/16 16:16] (current) andre |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== PicnicTime.com Cron Jobs ====== | ====== PicnicTime.com Cron Jobs ====== | ||
- | The following cron jobs are running in Nexcess SiteWorx to control the amount of storage space used for our websites: | + | The following cron jobs are set up in Nexcess SiteWorx to control the amount of storage space used for our websites: |
- | * This cron job sends an email if the total size of the root directory is greater than 40GB: <code>if [`du -sh /chroot/home/picnicti | awk '{ print $1 }' | cut -d'G' -f1` -gt 40]; then echo "GB used: `du -sh /chroot/home/picnicti | awk '{ print $1 }' | cut -d'G' -f1`" | mail -s "Storage space used" andre@picnictime.com; fi</code> | + | * This script sends an email if the total size of the root directory is greater than 40GB: <code>if [`du -sh /chroot/home/picnicti | awk '{ print $1 }' | cut -d'G' -f1` -gt 40]; then echo "GB used: `du -sh /chroot/home/picnicti | awk '{ print $1 }' | cut -d'G' -f1`" | mail -s "Running out of storage for PicnicTime.com" andre@picnictime.com; fi</code> |
- | * This cron job deletes a folder that contains cached product images: <code>rm -rf /chroot/home/picnicti/picnictime.com/html/media/catalog/product/cache/2/*</code> | + | * This script forces a folder of cached product images to be deleted: <code>rm -rf /chroot/home/picnicti/picnictime.com/html/media/catalog/product/cache/1/*</code><code>rm -rf /chroot/home/picnicti/picnictime.com/html/media/catalog/product/cache/2/*</code> |