From: Thierry Parmentelat Date: Thu, 13 Oct 2011 15:29:05 +0000 (+0200) Subject: clean NOTIFY files X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7b33b314f979da37cd4890def0c0f8a05f889cf2;p=infrastructure.git clean NOTIFY files --- diff --git a/scripts/manage-git-mirror.sh b/scripts/manage-git-mirror.sh index d253160..78489ec 100755 --- a/scripts/manage-git-mirror.sh +++ b/scripts/manage-git-mirror.sh @@ -36,11 +36,24 @@ function status () { ls -l /git-mirror/LOCK } +function clean () { + totrash=$(ls /git-mirror/*/NOTIFIED 2> /dev/null) + if [ -z "$totrash" ] ; then + echo "No NOTIFIED file found" + else + echo "Trashing the following files" + ls -l $totrash + rm -f $totrash + echo Done + fi +} + function main () { case $1 in start) start;; stop) stop;; status) status;; + clean) clean;; *) echo "Usage: $COMMAND start|stop";; esac }