From 9465fd744cc2117190bafc1a3e2da9f10ca29bf9 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 31 Dec 2022 22:00:11 +0100 Subject: Storage via SQLite, Added tests (WIP) --- whiteboard-cleanup | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 whiteboard-cleanup (limited to 'whiteboard-cleanup') diff --git a/whiteboard-cleanup b/whiteboard-cleanup deleted file mode 100755 index 7a987e0..0000000 --- a/whiteboard-cleanup +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# -# Cleanup global whiteboard files -# -# To be called by cron -# - -set -e - -# look up config file -CONFIGFILE=/etc/whiteboard.conf -XMLLINTOPTS="--nonet --nocdata --nocatalogs" -DATAPATH=`xmllint --xpath "/config/datapath/text()" $XMLLINTOPTS $CONFIGFILE` -MAXAGE=`xmllint --xpath "/config/maxage/text()" $XMLLINTOPTS $CONFIGFILE` - -cd $DATAPATH - -ls -1 | while read i ; do - AGE=$((`date +"%s"` - `stat -c "%Y" $i`)) - if [[ "$AGE" -gt "$MAXAGE" ]] ; then - echo "Deleting entry $i ..." - rm $i - fi -done -- cgit v1.2.3