X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fmonthly.functions;h=22ba94bf3d8a02e3558628de8c67068228c4b97e;hb=398966bc13bbe130698d236e5be2d05fa181b40f;hp=db4de4b85f3971cb4bb758add5261cec997df329;hpb=b41fdd720777325f75f921711243e1620c254e3b;p=dak.git diff --git a/config/debian/monthly.functions b/config/debian/monthly.functions index db4de4b8..22ba94bf 100644 --- a/config/debian/monthly.functions +++ b/config/debian/monthly.functions @@ -22,4 +22,18 @@ function archivequeuedone() { log "Archiving queue/done files of ${DONEYEAR}-${DONEMONTH}" cd ${queuedir}/done/${DONEYEAR} tar --create --xz --remove-files --file ${DONEMONTH}.tar.xz ${DONEMONTH} -} \ No newline at end of file +} + +function rotatereports() { + # Do not rotate while it might receive data + if lockfile -r -1 ${LOCK_UNCHECKED} 2> /dev/null; then + TMPFILES="${TMPFILES} ${LOCK_UNCHECKED}" + for dir in ${queuedir}/{.,p-u-new,o-p-u-new}; do + cd ${dir} + mv REPORT REPORT.${OLDDATE} + xz -9 REPORT.${OLDDATE} + touch REPORT + done + fi + rm ${LOCK_UNCHECKED} +}