source: MondoRescue/branches/2.2.4/tools/build2qemu@ 1490

Last change on this file since 1490 was 1490, checked in by Bruno Cornec, 17 years ago

Stricter POSIX conformance for all shell scripts (== replaced by = in compare)

  • Property svn:executable set to *
File size: 2.5 KB
Line 
1#!/bin/bash
2#
3# $Id$
4#
5# Script build packages on various distributions with qemu
6#
7
8#if [ _"$1" = _"" ]; then
9 #echo "Syntax: build2qemu [version-tag [vm1]..|vmx]] )"
10 #exit -1
11#fi
12
13# Syntax: build2qemu [version-tag [--pkg "pkg1...pkgn"] [vm1]..|vmx]]
14
15(
16dname=`dirname $0`
17prem=`echo $dname |cut -c1`
18if [ ${prem} = "/" ]; then
19 export TOOLHOME=$dname
20else
21 export TOOLHOME=${PWD}/$dname
22fi
23
24. $TOOLHOME/common-env
25. $TOOLHOME/distro-env
26
27# We need to get $VER and $TAG
28if [ "$1" = "" ]; then
29 LAST=`cat ${TOPDIR}/LAST`
30else
31 LAST=$1
32 shift
33fi
34VER=`echo $LAST | cut -d- -f1`
35TAG=`echo $LAST | cut -d- -f2`
36echo "Working on ${VER}-$TAG"
37
38c=""
39if [ _"$1" = _"--pkg" ]; then
40 shift
41 c=$1
42 shift
43fi
44
45if [ _"$1" = _"" ]; then
46 export VMS=`cat ${TOOLHOME}/DISTROS`
47 single=0
48else
49 export VMS="$*"
50 single=1
51fi
52
53VMS64=`echo $VMS | perl -pi -e 's/\b([A-z0-9_.]+)\b/$1_64/g'`
54
55cat > $MONDOTMP/mkmondo << EOF
56#!/bin/bash
57
58export LANG="C"
59export LANGUAGE="C"
60export LC_ALL="C"
61export TOOLHOME=$TOOLHOME
62
63$TOOLHOME/build2pkg $LAST $c < /dev/null
64$TOOLHOME/pkg2ftp $LAST $c
65EOF
66chmod 755 $MONDOTMP/mkmondo
67
68if [ $single -eq 0 ]; then
69 $TOOLHOME/file2ftp
70fi
71
72# TOPDIR contains ../.. which causes problems to tar
73# so we need to recompute it
74cd $TOPDIR
75dir=`pwd`
76tar cfz $MONDOTMP/mkmondo.tar.gz $TOOLHOME $MONDOTMP/mkmondo $dir/${VER}-$TAG
77
78for m in $VMS $VMS64; do
79 echo "Working on $m"
80 vmp=0
81 if [ ! -f /users/qemu/$m.qemu ]; then
82 echo $m | grep -Eq '_64$'
83 if [ $? -eq 0 ]; then
84 echo "VM unaccessible. No x86_64 version yet probably"
85 continue
86 else
87 echo "VM unaccessible. Verify NFS mount"
88 rm -rf $MONDOTMP
89 exit -1
90 fi
91 fi
92 if [ _"$sp" = _"" ]; then
93 export sp=2222
94 fi
95 ps auxww | grep qemu | grep -v grep | grep -q /users/qemu/$m.qemu
96 if [ $? -ne 0 ]; then
97 # Virtual machine alreday started
98 vmp=1
99 $TOOLHOME/mkqemu $m &
100 sleep 300
101 fi
102 scp -P $sp $MONDOTMP/mkmondo.tar.gz ~/.rpmmacros ~/.rpmrc bruno@localhost:
103 rdate=`date "+%m%d%H%M"`
104 ssh -q -p $sp root@localhost "date $rdate"
105 ssh -q -p $sp bruno@localhost "cd / ; rm -rf ~bruno/mondo ~bruno/RPMS/BUILD/* ~bruno/RPMS/tmp/* /tmp/* ; tar xfz ~bruno/mkmondo.tar.gz ; $MONDOTMP/mkmondo " | tee $MONDOTMP/mkvm.log
106 if [ $vmp -eq 1 ]; then
107 ssh -q -p $sp root@localhost "halt -p"
108 sleep 300
109 proces=`ps auxww | grep qemu | grep -v grep | grep /users/qemu/$m.qemu | awk '{print $2}'`
110 if [ "$proces" != "" ]; then
111 kill $proces
112 sleep 10
113 fi
114 fi
115done
116
117# Should be removed at the end
118rm -rf $MONDOTMP
119) 2>&1 | tee /tmp/build2qemu.log
Note: See TracBrowser for help on using the repository browser.