2012-07-25 12:51:21 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Remove tarballs not accessed in the last 30 days
|
|
|
|
# concurrency wrt scripts is handled in crontab
|
|
|
|
|
2012-07-25 13:21:49 +02:00
|
|
|
# Path to molecules.git dir
|
|
|
|
SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}"
|
|
|
|
|
|
|
|
DIR="${SABAYON_MOLECULE_HOME}/pkgcache"
|
2012-07-25 12:51:21 +02:00
|
|
|
find "${DIR}" -atime +30 -type f -delete
|