]> git.decadent.org.uk Git - dak.git/commitdiff
unchecked
authorJoerg Jaspert <joerg@debian.org>
Mon, 10 Nov 2008 21:26:16 +0000 (22:26 +0100)
committerJoerg Jaspert <joerg@debian.org>
Mon, 10 Nov 2008 21:26:16 +0000 (22:26 +0100)
ignore ssh errors with rietz AKA bugs, but warn if they are there for more than three days.

Signed-off-by: Joerg Jaspert <joerg@debian.org>
ChangeLog
config/debian/cron.unchecked

index f0568930ee6b615834eefe6b6c75371ad90d3af2..5658b0e3b288a2777cc76c630a339ab7dbadf717 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-10  Joerg Jaspert  <joerg@debian.org>
+
+       * config/debian/cron.unchecked: how about us ignoring bugs.d.o
+       down? It's not like it is time critical or something to transfer
+       this stuff, it doesn't hurt to have it there a bit later...
+
 2008-11-08  Joerg Jaspert  <joerg@debian.org>
 
        * config/debian/cron.hourly: Create new tracefile format.
index 406636ef65b0e0504e0c92bfdcae143c4420208c..41b664016126c642d12d7bb159d038e9f99f5516 100755 (executable)
@@ -35,7 +35,14 @@ if lockfile -r3 $LOCKFILE; then
        echo "--" >> $report
 
        # sync with debbugs
-       rsync -aq --remove-source-files  $queuedir/bts_version_track/ bugs-sync:/org/bugs.debian.org/versions/queue/ftp-master/
+    rsync -aq -e "ssh -o Batchmode=yes -o ConnectTimeout=30 -o SetupTimeout=30" --remove-source-files  $queuedir/bts_version_track/ bugs-sync:/org/bugs.debian.org/versions/queue/ftp-master/ 2>/dev/null && touch $lockdir/synced_bts_version || true
+
+       NOW=$(date +%s)
+       TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
+       DIFF=$(( NOW - TSTAMP ))
+       if [ $DIFF -ge 259200 ]; then
+               echo "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
+       fi
 
        if lockfile -r3 $NOTICE; then
            LOCKDAILY="YES"