chiark / gitweb /
helper for grabbing strings from debian/po directories in other trees
[bin.git] / ubuntu-build-di
1 #! /bin/sh
2
3 # amd64: yellow
4 # hppa: bld-3.mmjgroup.com
5 # i386: vernadsky
6 # ia64: hooker
7 # powerpc: ross
8
9 for i in vernadsky hooker ross yellow bld-3.mmjgroup.com; do
10         (echo "$i starting at $(date)"
11          ssh -n buildd@$i.buildd /home/buildd/bin/BuildDI
12          echo "$i finished at $(date)") &
13 done
14 wait
15 exit 0