From cf09cfaaeaf0548918f3b6deeec2946b64a0c0b5 Mon Sep 17 00:00:00 2001 From: Mike O'Connor Date: Fri, 2 Jan 2009 18:53:02 -0500 Subject: [PATCH] update dinstall.html for 4 daily dinstall runs dinstall.html contains a javascript countdown timer used to estimate when the next dinstall run will occur. It was hardcoded for 2 daily dinstall runs. This patch hard codes it to 4 daily runs. There previously was a link to the announcement of the switch to 2 daily dinstall runs. I was not able to locate a similar announcement to the switch to 4 daily runs, so I simply removed the link to the announcement. Signed-off-by: Mike O'Connor --- web/dinstall.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/dinstall.html b/web/dinstall.html index 2d0f967f..0eb3ae8b 100644 --- a/web/dinstall.html +++ b/web/dinstall.html @@ -23,8 +23,8 @@ dinstall.setUTCSeconds(00); function countdown() { var now = new Date(); - var rest = Math.floor((dinstall - now)/1000) % 43200; - if(now>dinstall) rest+=43200; + var rest = Math.floor((dinstall - now)/1000) % 21600; + if(now>dinstall) rest+=21600; stunden = Math.floor(rest/3600); if (stunden < 10) stunden = "0" + stunden; @@ -45,12 +45,12 @@ setInterval('countdown()',1000);

-dinstall should run 07h 52min and 19h 52min or 07h 52min AM/PM (UTC) +dinstall should run 4 times a day at 01:52, 07:52, 13:52, 19:52 (all times in UTC).

Made by Eduard Bloch <blade@debian.org>
Small update to use 12h dinstall by Felipe Augusto van de Wiel (faw) -
Please check this announcement about dinstall twice daily. +
Small update to use 6h dinstall by Mike O'Connor (stew) -- 2.39.2