Changeset 1797 in MondoRescue


Ignore:
Timestamp:
Nov 14, 2007, 2:09:12 AM (16 years ago)
Author:
Bruno Cornec
Message:

Support /vmfs/volumes for ESX

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi/mindi

    r1796 r1797  
    970970    grep -vx " *#.*" $MY_FSTAB | grep -vx " *none.*" | $AWK '/^\/dev\/[imhs]d||^LABEL=\/|^UUID=/ && !/fdd|cdr|zip|floppy/ {print $1}'
    971971    [ -e "/etc/raidtab" ] && $AWK '/^ *device/ {print $2}' /etc/raidtab
     972    [ -e "/vmfs/volumes" ] && echo "/vmfs/volumes"
    972973    return
    973974}
     
    31913192MODULES="`cat /proc/modules | awk '{print $1}'`"
    31923193if [ -x /usr/sbin/esxcfg-module ]; then
     3194    echo "-------------" >> $LOGFILE
    31933195    echo "VMWare ESX server detected - Enabling dedicated support" >> $LOGFILE
    31943196    echo "-------------" >> $LOGFILE
     
    32083210
    32093211# Compute libata version
    3210 laver=`modinfo libata | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/  *//g'`
     3212laver=`modinfo libata | grep -Ei '^Version:' | cut -d: -f2 | cut -d. -f1 | sed 's/  *//g' 2> /dev/null`
    32113213# If libata v2 is used then remove ide-generic as it will perturbate boot
    32123214if [ "`echo $MODULES | grep libata`" ]; then
Note: See TracChangeset for help on using the changeset viewer.