]> git.decadent.org.uk Git - dak.git/commitdiff
Make it the qa wnpp list download more fault tolerant
authorAlexander Reichle-Schmehl <alexander@schmehl.info>
Tue, 28 Sep 2010 15:39:53 +0000 (15:39 +0000)
committerAlexander Reichle-Schmehl <alexander@schmehl.info>
Tue, 28 Sep 2010 15:39:53 +0000 (15:39 +0000)
config/debian/cron.daily

index 0768a9d419c5748114a220a24e45d3f1563a6a36..1815260c0338edbd529205073770df4c7789502a 100755 (executable)
@@ -11,6 +11,12 @@ export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
 
 
 # get the latest list of wnpp bugs and their source packages
-wget -q -O/srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm  http://qa.debian.org/data/bts/wnpp_rm
+if $( wget -q -O/srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm.tmp http://qa.debian.org/data/bts/wnpp_rm ) ; then
+    mv /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm.tmp /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm
+else
+    if [ -f /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm.tmp ] ; then
+        rm /srv/ftp-master.debian.org/scripts/masterfiles/wnpp_rm.tmp
+    fi
+fi
 
 ################################################################################