Changeset 1693 in MondoRescue for branches/stable
- Timestamp:
- Oct 21, 2007, 3:06:22 AM (18 years ago)
- Location:
- branches/stable
- Files:
-
- 5 deleted
- 19 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/install.sh
r1619 r1693 69 69 70 70 echo "Creating target directories ..." 71 install -m 755 -d $conf $conf/deplist.d $locallib/mindi $MANDIR $local/sbin $ DOCDIR $CACHEDIR71 install -m 755 -d $conf $conf/deplist.d $locallib/mindi $MANDIR $local/sbin $CACHEDIR # $DOCDIR 72 72 73 73 echo "Copying files ..." … … 133 133 134 134 install -m 644 mindi.8 $MANDIR 135 install -m 644 ChangeLog COPYING README README.busybox README.ia64 README.pxe TODO INSTALL svn.log $DOCDIR135 #install -m 644 ChangeLog COPYING README README.busybox README.ia64 README.pxe TODO INSTALL svn.log $DOCDIR 136 136 137 137 if [ "_$PREFIX" = "_" ] && [ ! -f $locallib/mindi/rootfs/bin/busybox ]; then … … 160 160 161 161 if [ "$PKGBUILDMINDI" != "true" ]; then 162 chown -R root:root $locallib/mindi $conf $DOCDIR162 chown -R root:root $locallib/mindi $conf # $DOCDIR 163 163 chown root:root $local/sbin/mindi $MANDIR/mindi.8 $locallib/mindi/analyze-my-lvm $local/sbin/parted2fdisk.pl 164 164 if [ "$ARCH" = "ia64" ] ; then … … 168 168 169 169 # Special case for SuSE family where doc is put elsewhere in the RPM 170 if [ -e /etc/SuSE-release ]; then171 rm -rf $DOCDIR172 fi170 # if [ -e /etc/SuSE-release ]; then 171 # rm -rf $DOCDIR 172 # fi 173 173 174 174 # Special case for Debian family where doc is put elsewhere in the DEB 175 if [ -e /etc/debian_version ]; then176 rm -rf $DOCDIR177 fi175 # if [ -e /etc/debian_version ]; then 176 # rm -rf $DOCDIR 177 # fi 178 178 179 179 exit 0 -
branches/stable/mindi/mindi
r1685 r1693 26 26 # run this command. 27 27 28 MINDI_REV= RRR29 MINDI_VER= VVV28 MINDI_REV=PBREV 29 MINDI_VER=PBVER 30 30 31 31 MINDI_VERSION=${MINDI_VER}-r$MINDI_REV … … 1628 1628 echo "Unable to access $USBDEVICE" | tee -a $LOGFILE 1629 1629 echo "Make sure your USB device is pluged in" | tee -a $LOGFILE 1630 MindiExit -11630 exit -1 1631 1631 fi 1632 1632 echo -en "." 1633 echo "Unmounting $USBDEVICE just in case" >> $LOGFILE 1634 umount $USBDEVICE 2>&1 >> $LOGFILE 1633 1635 echo "Erasing $USBDEVICE" >> $LOGFILE 1634 1636 $FDISK $USBDEVICE 2>&1 >> $LOGFILE << EOF … … 1656 1658 echo -en "." 1657 1659 echo "Creating a vfat filesystem on $USBPART" >> $LOGFILE 1658 mk fs -t vfat$USBPART 2>&1 >> $LOGFILE1660 mkdosfs -F 32 $USBPART 2>&1 >> $LOGFILE 1659 1661 if [ $? -ne 0 ]; then 1660 1662 echo "Unable to create a vfat filesystem on $USBPART" | tee -a $LOGFILE … … 1673 1675 fi 1674 1676 echo -en "." 1675 mkdir -p $MINDI_TMP/usb/ {images,archives}1676 cp -f $1/*.img $1/*.gz $MINDI_TMP/usb/images 2>> $LOGFILE || LogIt "OfferToMakeBootableUSB: Cannot copy $i to $MINDI_TMP/ iso/images"1677 mkdir -p $MINDI_TMP/usb/images 1678 cp -f $1/*.img $1/*.gz $MINDI_TMP/usb/images 2>> $LOGFILE || LogIt "OfferToMakeBootableUSB: Cannot copy $i to $MINDI_TMP/usb/images" 1677 1679 echo -en "." 1678 1680 old_pwd=`pwd` … … 1698 1700 cp $MINDI_TMP/mindi.rdz $MINDI_TMP/usb/initrd.img 2>> $LOGFILE 1699 1701 echo -en "." 1700 if [ _"$MONDO_SHARE" != _"" ]; then1701 cp $kernelpath $MONDO_ROOT/vmlinuz 2> /dev/null || Die "Cannot copy vmlinuz ($kernelpath) to mondo root ($MONDO_ROOT/vmlinuz). Did you run out of disk space?"1702 cp $MINDI_TMP/mindi.rdz $MONDO_ROOT/initrd.img 2> /dev/null || Die "Cannot copy mindi.rdz ($MINDI_TMP) to mondo root ($MONDO_ROOT/initrd.img). Did you run out of disk space?"1703 1704 fi1705 echo -en "."1706 1702 [ -e "$iso_cfg_file" ] || Die "FIXME - unable to find $iso_cfg_file - this should never occur" 1707 1703 cat $sys_cfg_file | HackSyslinuxFile $ramdisk_size $MINDI_TMP/usb > syslinux.cfg || Die "Cannot copy syslinux.cfg from mindi_home to $MINDI_TMP/usb - did you run out of disk space?" … … 1714 1710 if [ "$ARCH" != "ia64" ] ; then 1715 1711 if [ _"$MONDO_SHARE" != _"" ]; then 1716 cp -f $MINDI_TMP/usb/{syslinux.cfg,initrd.img,vmlinuz,message.txt} $MONDO_ROOT 2>> $LOGFILE || Die "Cannot copy core files to ramdisk for boot disk (under $MONDO_ROOT). Did you run out of disk space?"1717 1712 cp -f $MONDO_SHARE/autorun $MONDO_ROOT 2>> $LOGFILE 1718 1713 fi … … 1734 1729 fi 1735 1730 echo -en "." 1736 #1737 # If mondoarchive, then tranfer $MINDI_CACHE content to the USB device1738 # and mount that device under that mountpoint instead1739 # Has to be done at the end here.1740 #1741 if [ _"$MONDO_SHARE" != _"" ]; then1742 mount $USBPART $MINDI_TMP/usb 2>> $LOGFILE1743 mv $MINDI_CACHE/* $MINDI_TMP/usb1744 umount $MINDI_TMP/usb1745 mount $USBPART $MINDI_CACHE1746 fi1747 1731 } 1748 1732 … … 3123 3107 fi 3124 3108 3125 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] ; then3109 if [ "$PROMPT_MAKE_USB_IMAGE" = "yes" ] && [ "$USBDEVICE" != "" ]; then 3126 3110 LogIt "Including the generation of a Bootable USB device on $USBDEVICE" 3127 3111 fi -
branches/stable/mondo-doc/mindi.8
r1581 r1693 21 21 .\" USA. 22 22 .\" 23 .TH MINDI 8 " DDD" "Mondo Rescue VVV-rRRR"23 .TH MINDI 8 "PBDATE" "Mondo Rescue PBVER-rPBREV" 24 24 .SH NAME 25 25 mindi \- a tool for creating boot/root disks … … 39 39 .PP 40 40 .B mindi 41 creates a set of bootable ISO images using41 creates a set of bootable ISO/USB images using 42 42 files from the system it runs on. 43 43 .B mindi … … 48 48 is used by 49 49 .B monodarchive(8) 50 to produce the required boot/root CDimages but can also be used50 to produce the required boot/root USB/ISO images but can also be used 51 51 stand-alone. 52 52 -
branches/stable/mondo-doc/mondoarchive.8
r1594 r1693 19 19 .\" USA. 20 20 .\" 21 .TH mondoarchive 8 " DDD" "Mondo Rescue VVV-rRRR"21 .TH mondoarchive 8 "PBDATE" "Mondo Rescue PBVER-rPBVER" 22 22 23 23 .SH NAME -
branches/stable/mondo-doc/mondorescue-howto.sgml
r1621 r1693 1 1 <!DOCTYPE BOOK PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ 2 <!ENTITY curdate " DDD">3 <!ENTITY curver " VVV-rRRR">2 <!ENTITY curdate "PBDATE"> 3 <!ENTITY curver "PBVER-rPBREV"> 4 4 5 5 <!ENTITY WWWB "http://www.mondorescue.org/"> -
branches/stable/mondo-doc/mondorestore.8
r1500 r1693 19 19 .\" USA. 20 20 .\" 21 .TH mondorestore 8 " DDD" "Mondo Rescue VVV-rRRR"21 .TH mondorestore 8 "PBDATE" "Mondo Rescue PBVER-rPBREV" 22 22 23 23 .SH NAME -
branches/stable/mondo/src/common/libmondo-archive.c
r1671 r1693 533 533 /*@ buffer ************************************************************ */ 534 534 char *tmp = NULL; 535 char *tmp1 = NULL; 536 char *tmp2 = NULL; 535 537 char *command = NULL; 536 538 char *bootldr_str = NULL; … … 1534 1536 } 1535 1537 close_evalcall_form(); 1538 } 1539 1540 1541 /** 1542 * Create a USB image in @c destfile, from files in @c bkpinfo->scratchdir. 1543 * 1544 * @param bkpinfo The backup information structure. Fields used: 1545 * - @c backup_media_type 1546 * - @c nonbootable_backup 1547 * - @c scratchdir 1548 * 1549 * @param destfile Where to put the generated USB image. 1550 * @return The number of errors encountered (0 for success) 1551 */ 1552 int make_usb_fs() 1553 { 1554 /*@ int ********************************************** */ 1555 int retval = 0; 1556 int res; 1557 1558 /*@ buffers ****************************************** */ 1559 char *tmp = NULL; 1560 char *tmp1 = NULL; 1561 char *result_sz = NULL; 1562 char *message_to_screen = NULL; 1563 char *old_pwd; 1564 1565 malloc_string(old_pwd); 1566 assert(bkpinfo != NULL); 1567 1568 log_msg(2, "make_usb_fs --- scratchdir=%s", bkpinfo->scratchdir); 1569 (void) getcwd(old_pwd, MAX_STR_LEN - 1); 1570 asprintf(&tmp, "chmod 755 %s", bkpinfo->scratchdir); 1571 run_program_and_log_output(tmp, FALSE); 1572 paranoid_free(tmp); 1573 chdir(bkpinfo->scratchdir); 1574 1575 asprintf(&message_to_screen, "Copying data to make %s #%d", 1576 media_descriptor_string(bkpinfo->backup_media_type), 1577 g_current_media_number); 1578 log_msg(1, message_to_screen); 1579 1580 if (is_this_device_mounted(bkpinfo->media_device)) { 1581 log_msg(1, "USB device mounted. Remounting it at the right place"); 1582 asprintf(&tmp, "umount %s", bkpinfo->media_device); 1583 run_program_and_log_output(tmp, FALSE); 1584 paranoid_free(tmp); 1585 } 1586 log_msg(1, "Mounting USB device."); 1587 asprintf(&tmp1, "%s/usb", bkpinfo->tmpdir); 1588 asprintf(&tmp, "mkdir -p %s", tmp1); 1589 run_program_and_log_output(tmp, FALSE); 1590 paranoid_free(tmp); 1591 /* Mindi always create one single parition on the USB dev */ 1592 asprintf(&tmp, "mount %s1 %s", bkpinfo->media_device, tmp1); 1593 run_program_and_log_output(tmp, FALSE); 1594 paranoid_free(tmp); 1595 1596 if (bkpinfo->nonbootable_backup) { 1597 log_msg(1, "Making nonbootable USB backup not implemented yet"); 1598 } else { 1599 log_msg(1, "Making bootable backup"); 1600 1601 /* Command to execute */ 1602 asprintf(&tmp,"mv %s/.??* %s/* %s", bkpinfo->scratchdir, bkpinfo->scratchdir, tmp1); 1603 res = eval_call_to_make_USB(tmp, message_to_screen); 1604 if (res) { 1605 asprintf(&result_sz, "%s ...failed",tmp); 1606 } else { 1607 asprintf(&result_sz, "%s ...OK",tmp); 1608 } 1609 log_to_screen(result_sz); 1610 paranoid_free(result_sz); 1611 paranoid_free(tmp); 1612 retval += res; 1613 } 1614 paranoid_free(message_to_screen); 1615 paranoid_free(tmp1); 1616 1617 if (is_this_device_mounted(bkpinfo->media_device)) { 1618 asprintf(&tmp, "umount %s1", bkpinfo->media_device); 1619 run_program_and_log_output(tmp, FALSE); 1620 paranoid_free(tmp); 1621 } 1622 1623 chdir(old_pwd); 1624 if (retval) { 1625 log_msg(1, "WARNING - make_usb_fs returned an error"); 1626 } 1627 paranoid_free(old_pwd); 1628 return (retval); 1536 1629 } 1537 1630 … … 3154 3247 res = make_iso_fs(isofile); 3155 3248 } else { 3249 res = make_usb_fs(); 3156 3250 } 3157 3251 if (g_current_media_number == 1 && !res -
branches/stable/mondo/src/common/libmondo-fork-EXT.h
r1663 r1693 5 5 char *what_i_am_doing); 6 6 extern int run_program_and_log_output(char *program, int); 7 extern int eval_call_to_make_USB(char *call, 8 char *what_i_am_doing); 7 9 extern int eval_call_to_make_ISO(char *basic_call, char *isofile, 8 10 int cd_no, char *logstub, -
branches/stable/mondo/src/common/libmondo-fork.c
r1663 r1693 179 179 180 180 /** 181 * Call copy of data to create an USB image. 182 * @param bkpinfo The backup information structure. Fields used: 183 * - @c bkpinfo->backup_media_type 184 * @return Exit code of @c copy (0 is success, anything else indicates failure). 185 */ 186 int 187 eval_call_to_make_USB(char *command, char *what_i_am_doing) { 188 189 /*@ int's *** */ 190 int retval = 0; 191 192 193 /*@*********** End Variables ***************************************/ 194 195 log_msg(3, "Starting"); 196 assert(bkpinfo != NULL); 197 198 log_to_screen 199 ("Please be patient. Do not be alarmed by on-screen inactivity."); 200 log_msg(4, "Calling open_evalcall_form() with what_i_am_doing='%s'", 201 what_i_am_doing); 202 203 if (!g_text_mode) { 204 newtSuspend(); 205 } 206 log_msg(1, "command = '%s'", command); 207 if (!g_text_mode) { 208 retval = run_external_binary_with_percentage_indicator_NEW 209 (what_i_am_doing, command); 210 } else { 211 retval += system(command); 212 } 213 if (!g_text_mode) { 214 newtResume(); 215 } 216 217 return (retval); 218 } 219 220 221 222 223 /** 181 224 * Run a program and log its output (stdout and stderr) to the logfile. 182 225 * @param program The program to run. Passed to the shell, so you can use pipes etc. -
branches/stable/mondo/src/common/libmondo-fork.h
r1663 r1693 8 8 int run_program_and_log_to_screen(char *basic_call, char *what_i_am_doing); 9 9 int run_program_and_log_output(char *program, int); 10 int eval_call_to_make_USB(char *call, char *what_i_am_doing); 10 11 int eval_call_to_make_ISO(char *basic_call, char *isofile, 11 12 int cd_no, char *logstub, char *what_i_am_doing); -
branches/stable/mondo/src/common/libmondo-string.c
r1663 r1693 929 929 } 930 930 931 switch (type_of_bkp) { 932 case dvd: 933 strcpy(type_of_backup, "DVD"); 934 break; 935 case cdr: 936 strcpy(type_of_backup, "CDR"); 937 break; 938 case cdrw: 939 strcpy(type_of_backup, "CDRW"); 940 break; 941 case tape: 942 strcpy(type_of_backup, "tape"); 943 break; 944 case cdstream: 945 strcpy(type_of_backup, "CDR"); 946 break; 947 case udev: 948 strcpy(type_of_backup, "udev"); 949 break; 950 case iso: 951 strcpy(type_of_backup, "ISO"); 952 break; 953 case nfs: 954 strcpy(type_of_backup, "nfs"); 955 break; 956 case usb: 957 strcpy(type_of_backup, "USB"); 958 break; 959 default: 960 strcpy(type_of_backup, "ISO"); 961 } 962 return (type_of_backup); 963 } 964 931 switch (type_of_bkp) { 932 case dvd: 933 strcpy(type_of_backup, "DVD"); 934 break; 935 case cdr: 936 strcpy(type_of_backup, "CDR"); 937 break; 938 case cdrw: 939 strcpy(type_of_backup, "CDRW"); 940 break; 941 case tape: 942 strcpy(type_of_backup, "tape"); 943 break; 944 case cdstream: 945 strcpy(type_of_backup, "CDR"); 946 break; 947 case udev: 948 strcpy(type_of_backup, "udev"); 949 break; 950 case iso: 951 strcpy(type_of_backup, "ISO"); 952 break; 953 case nfs: 954 strcpy(type_of_backup, "nfs"); 955 break; 956 case usb: 957 strcpy(type_of_backup, "USB"); 958 break; 959 default: 960 strcpy(type_of_backup, "ISO"); 961 } 962 return (type_of_backup); 963 } -
branches/stable/mondo/src/include/my-stuff.h
r1670 r1693 227 227 #ifdef __FreeBSD__ 228 228 #define VANILLA_SCSI_TAPE "/dev/sa" 229 #define VANILLA_USB_DEVICE "tobegivenbybsdguru" 229 230 #define DONT_KNOW_HOW_TO_EVALUATE_THIS_DEVICE_TYPE "/dev/vinum/" 230 231 #define RAID_DEVICE_STUB DONT_KNOW_HOW_TO_EVALUATE_THIS_DEVICE_TYPE … … 235 236 #else 236 237 #define VANILLA_SCSI_TAPE "/dev/st0" 238 #define VANILLA_USB_DEVICE "/dev/hda" 237 239 #define DONT_KNOW_HOW_TO_EVALUATE_THIS_DEVICE_TYPE "/dev/md" 238 240 #define RAID_DEVICE_STUB DONT_KNOW_HOW_TO_EVALUATE_THIS_DEVICE_TYPE -
branches/stable/pbconf/mindi/rpm/mindi.spec
r1681 r1693 37 37 export CONFDIR=%{_sysconfdir} 38 38 export MANDIR=%{_mandir} 39 export DOCDIR=%{_docdir}39 #export DOCDIR=%{_docdir} 40 40 export LIBDIR=%{_libdir} 41 41 export CACHEDIR=%{_var}/cache/%{name} -
branches/stable/pbconf/mondo/deb/control
r1464 r1693 1 Source: mondo2 Section: utils1 Source: PBPKG 2 Section: PBGRP 3 3 Priority: optional 4 Maintainer: Bruno Cornec <bruno@mondorescue.org>4 Maintainer: PBPACKAGER 5 5 Build-Depends: debhelper (>= 4.2.20), libnewt-dev, libncurses5-dev 6 6 Standards-Version: 3.6.1 7 7 8 Package: mondo9 Architecture: amd64 i386 10 Section: utils8 Package: PBPKG 9 Architecture: amd64 i386 ia64 10 Section: PBGRP 11 11 Priority: optional 12 12 Depends: ${shlibs:Depends}, ${misc:Depends}, mindi (>= 1.2.3-1), afio, buffer, gawk, cdrecord, lzop -
branches/stable/pbconf/mondo/deb/rules
r1513 r1693 11 11 12 12 # Define package name variable for a one-stop change. 13 PACKAGE_NAME = mondo13 PACKAGE_NAME = PBPKG 14 14 15 15 # These are used for cross-compiling and for saving the configure script … … 91 91 mkdir -p debian/doc-temp 92 92 mkdir -p $(CURDIR)/debian/$(PACKAGE_NAME)/var/cache/mondo 93 cp -a docs/en/mondorescue-howto debian/doc-temp/html93 #cp -a docs/en/mondorescue-howto debian/doc-temp/html 94 94 95 95 dh_install -s -
branches/stable/pbconf/mondorescue.pb
r1663 r1693 14 14 15 15 pkgver mindi = 1.2.5 16 pkgver mindi-busybox = 1. 2.217 pkgtag mindi-busybox = 416 pkgver mindi-busybox = 1.7.2 17 pkgtag mindi-busybox = 1 18 18 19 19 # Hash of additional package/package directory -
branches/stable/tools/qemu-vm.txt
r1663 r1693 2 2 qemu-img create -f qcow2 image.qemu 3G 3 3 qemu -cdrom /dev/hdc -m 256 -boot d image.qemu 4 5 # use lilo on recent x86_86 distros as grub doesn't work. 6 # on suse make yast2 use the right repositories (Sw/SWrepositories/ remove DVD) 7 # # verify root alogin on sshd conf 8 grep Root /etc/ssh/sshd_config 9 10 # On Ubuntu install openssh-server 11 apt-get install openssh-server 12 13 # At install on 64 distro use lilo 14 # on Ubuntu change tty, kill grub install 15 # chroot /target remount cdrom 16 # install lilo instead 4 17 5 18 # Recent SUSE acpi=off … … 7 20 # RPM based : urpmi, yum install, yast2 8 21 # Mandriva 9 urpmi neon newt-devel slang-devel glibc-static-devel autoconf automake libtool gcc rpm-build wget gcc-c++ docbook-utils-pdf ImageMagick man patch mindi mondo mkisofs cdrecord pb10 11 #Fedora12 yum install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget vim gcc-c++ docbook-utils-pdf ImageMagick man patch cdrecord mkisofs pb13 14 22 15 23 # gentoo … … 23 31 apt-get install autoconf automake libtool g++ wget patch mondo groff imagemagick docbook-utils docbook2x docbook-to-man openssh-server dpkg-dev debian-builder dh-make fakeroot libnewt-dev libncurses5-dev pb 24 32 25 # Apply AppConfig path26 patch -p0 < pb-doc/App*27 28 33 #Changing CD during install: 29 34 Ctrl-Alt-2 … … 36 41 37 42 #Clé SSH: 43 mkdir .ssh 44 chmod 700 .ssh 38 45 scp bruno@10.0.2.2:.ssh/id_dsa.pub /root/.ssh/authorized_keys 39 46 chmod 600 /root/.ssh/authorized_keys 40 41 #Créer compte pb42 useradd pb43 44 # No passwd for pb45 perl -pi -e 's/^pb:\!\!:/pb:*:/' /etc/shadow46 # Adapt sudoers47 echo "pb ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers48 # poweroff only49 50 su - pb51 mkdir ~/.ssh52 chmod 700 ~/.ssh53 scp -p victoria2.home.musique-ancienne.org:.ssh/id_dsa.pub ~/.ssh/authorized_keys54 # Passwd asked above55 chmod 600 ~/.ssh/authorized_keys56 47 57 48 #rebuild paquets necessaires mondo: … … 64 55 chmod 644 build/RPMS/i386/* 65 56 scp -p build/RPMS/i?86/afio-[0-9]* build/RPMS/i?86/buffer-[0-9]* www.mondorescue.org:/mondo/ftp/rhel/3/ 66 67 # Exchange host keys with www.mondorescue.org68 ssh www.mondorescue.org ls69 70 57 71 58 root: -
branches/stable/tools/setupqemu
r1681 r1693 3 3 ( 4 4 if [ _"$1" == _"" ]; then 5 echo "Syntax: setupqemu VM "5 echo "Syntax: setupqemu VM|all" 6 6 exit -1 7 7 fi 8 8 cat /users/bruno/pb/svn/devel/pb/contrib/pbsetupqemu /users/bruno/pb/svn/devel/pb/lib/ProjectBuilder/Distribution.pm > /tmp/pbscript 9 for m in $*; do 10 pb -r `pwd` -p mondorescue - m $m -a root -s /tmp/pbscript script2vm ; pb -p mondorescue -m $m build2vm9 if [ _"$1" == "all" ]; then 10 pb -r `pwd` -p mondorescue -a root -s /tmp/pbscript script2vm 11 11 ssh -p 2222 root@localhost halt 12 12 sleep 120 13 ps auhxww | grep qemu | grep -Ev 'grep|setupqemu' | awk '{print $2}' | xargs kill -9 14 done 13 ps auhxww | grep qemu | grep -Ev 'grep|setupqemu' | awk '{print $2}' | xargs kill 14 else 15 for m in $*; do 16 pb -r `pwd` -p mondorescue -m $m -a root -s /tmp/pbscript script2vm ; pb -p mondorescue -m $m build2vm 17 #ssh -p 2222 root@localhost halt 18 #sleep 120 19 #ps auhxww | grep qemu | grep -Ev 'grep|setupqemu' | awk '{print $2}' | xargs kill -9 20 done 21 fi 15 22 ) 2>&1 | tee /tmp/setupqemu.log -
branches/stable/website/top.shtml
r785 r1693 15 15 </div> 16 16 <div id="topinfo"> 17 VVV-rRRR - DDD</div>17 PBVER-rPBREV - PBDATE </div> 18 18 </div> 19 19 <div id="body">
Note:
See TracChangeset
for help on using the changeset viewer.