From: Colin Watson Date: Wed, 9 Mar 2005 13:11:00 +0000 (+0000) Subject: Add scripts to rebuild Ubuntu d-i and live cloops on buildds. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?p=bin.git;a=commitdiff_plain;h=41649b8b076565448dfcdc179a5c6daf5719eb89;ds=sidebyside Add scripts to rebuild Ubuntu d-i and live cloops on buildds. --- diff --git a/ubuntu-build-di b/ubuntu-build-di new file mode 100755 index 0000000..ccab485 --- /dev/null +++ b/ubuntu-build-di @@ -0,0 +1,9 @@ +#! /bin/sh + +for i in mcmurdo hooker ross yellow; do + (echo "$i starting at $(date)" + ssh -n buildd@$i.buildd /home/buildd/bin/BuildDI + echo "$i finished at $(date)") & +done +wait +exit 0 diff --git a/ubuntu-build-livecd b/ubuntu-build-livecd new file mode 100755 index 0000000..39c4d96 --- /dev/null +++ b/ubuntu-build-livecd @@ -0,0 +1,9 @@ +#! /bin/sh + +for i in terranova weddell adare king; do + (echo "$i starting at $(date)" + ssh -n buildd@$i.buildd /home/buildd/bin/BuildLiveCD + echo "$i finished at $(date)") & +done +wait +exit 0