Changeset 1500 in MondoRescue for branches/stable/mindi/mindi


Ignore:
Timestamp:
Jun 9, 2007, 2:05:52 AM (17 years ago)
Author:
Bruno Cornec
Message:
  • ChangeLog updated
  • Attempt to fix completely #159
  • Improve ESX+vmfs support - needs testing
  • Attempt to fix #136 (without floppy mondorestore may hang due to a mount command blocked)
  • man page fixed as mindi images are now under /var/cache/mindi
  • Support Web page now includes all the latest supported distributions
  • mondorestore supports now the -p option so man page fixed.
  • Fix my email address in mindi man page
  • Fix a typo on the support Web page
  • Improve isolinux.bin detection on x86_64 system by looking also in /usr/lib64
  • Stricter POSIX conformance for all shell scripts (== replaced by = in compare)

(merge -r 1488:1499 $SVN_M/branches/2.2.4)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mindi/mindi

    r1489 r1500  
    587587    ISOLINUX=/usr/lib/isolinux.bin
    588588    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib/syslinux/isolinux.bin
     589    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/lib64/syslinux/isolinux.bin
    589590    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/syslinux/isolinux.bin
    590591    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib/syslinux/isolinux.bin
     592    [ ! -e "$ISOLINUX" ] && ISOLINUX=/usr/share/lib64/syslinux/isolinux.bin
    591593    [ ! -e "$ISOLINUX" ] && ISOLINUX=`locate isolinux.bin | grep -x "/.*/isolinux.bin"`
    592594    [ ! -e "$ISOLINUX" ] && Die "Please install isolinux first. If your syslinux RPM doesn't include isolinux, you may download an isolinux RPM from Mondo's website - go to http://www.mondorescue.com and click on 'Download'"
     
    30463048lsmod >> $LOGFILE
    30473049MODULES="`cat /proc/modules | awk '{print $1}'`"
     3050if [ -e /usr/sbin/esxcfg-module ]; then
     3051    echo "VMWare ESX server detected - Enabling dedicated support" >> $LOGFILE
     3052    echo "-------------" >> $LOGFILE
     3053    echo "VMWare modules" >> $LOGFILE
     3054    echo "-------------" >> $LOGFILE
     3055    esxcfg-module -l >> $LOGFILE
     3056    MODULES="$MODULES `esxcfg-module -l | awk '{print $1}'`"
     3057fi
    30483058echo "-------------" >> $LOGFILE
    30493059echo "Liste of extra modules is:" >> $LOGFILE
Note: See TracChangeset for help on using the changeset viewer.