]> git.decadent.org.uk Git - dak.git/blobdiff - config/debian-security/cron.buildd
Switch to "jessie" as stable.
[dak.git] / config / debian-security / cron.buildd
index 959d4e65a5d2cfcce6e232cb65d1e17269e107aa..33f847c35db0fbe4bff26c7c90e6d6fcbc1a6e8e 100755 (executable)
@@ -20,8 +20,8 @@ now=$(date +%s)
 check=$(( now - 3*60 ))
 
 for dist in $DISTS; do
-    smodtime=$(stat -c "%Y" $base/buildd/$dist/Sources.gz)
-    pmodtime=$(stat -c "%Y" $base/buildd/$dist/Packages.gz)
+    smodtime=$(stat -c "%Y" $base/build-queues/dists/buildd-$dist/updates/*/source/Sources.gz | sort -n | tail -1)
+    pmodtime=$(stat -c "%Y" $base/build-queues/dists/buildd-$dist/updates/*/binary-*/Packages.gz | sort -n | tail -1)
 
     if [ ${smodtime} -gt ${check} ] || [ ${pmodtime} -gt ${check} ]; then
         # Packages/Sources changed in the last minutes
@@ -41,15 +41,18 @@ if [ ! -z "${dists}" ]; then
     trap 'kill -TERM $SSH_PID' 0
     for d in ${dists}; do
         case ${d} in
-            oldstable)
+            oldoldstable)
                 send=squeeze
                 ;;
-            stable)
+            oldstable)
                 send=wheezy
                 ;;
-            testing)
+            stable)
                 send=jessie
                 ;;
+            testing)
+                send=stretch
+                ;;
             *)
                 send=unknown
                 ;;