mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-07-28 22:15:01 +02:00
decreasing the archive size with the purge messages
This commit is contained in:
22
util/purge.sh
Normal file
22
util/purge.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
|
||||
PRIORITY=mail.error
|
||||
TMPFILE=/var/run/piler/purge.tmp
|
||||
PURGE_BEACON=/var/piler/stat/purge
|
||||
|
||||
if [ -f $TMPFILE ]; then exit 1; fi
|
||||
|
||||
date > $TMPFILE
|
||||
|
||||
function finish {
|
||||
rm -f $TMPFILE
|
||||
}
|
||||
|
||||
trap finish EXIT
|
||||
|
||||
touch $PURGE_BEACON
|
||||
|
||||
pilerpurge
|
||||
|
||||
|
Reference in New Issue
Block a user