Changeset 2534 in MondoRescue
- Timestamp:
- Jan 8, 2010, 4:01:31 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mindi/analyze-my-lvm
r2532 r2534 51 51 fi 52 52 fi 53 echo "# $LVMCMD lvcreate$params -n $logical_volume $volume_group" 53 # Do not process LV whose VG are excluded 54 if ["`grep $volume_group $MINDI_TMP/excludedvgs`" = "" ]; then 55 echo "# $LVMCMD lvcreate$params -n $logical_volume $volume_group" 56 fi 57 rm -f $MINDI_TMP/excludedvgs 54 58 } 55 59 … … 131 135 fi 132 136 137 rm -f $MINDI_TMP/excludedvgs 133 138 if [ "$EXCLUDE_DEVS" ] ; then 134 139 for ed in $EXCLUDE_DEVS ; do 135 140 if [ "`echo " $list_of_devices" | grep " $ed"`" != "" ]; then 141 echo $current_VG >> $MINDI_TMP/excludedvgs 136 142 return 137 143 fi
Note:
See TracChangeset
for help on using the changeset viewer.