- Timestamp:
- Nov 23, 2006, 5:58:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/mindi
r966 r967 1163 1163 absolute_partition old_partition_fmt current_lvolume 1164 1164 1165 echo "Your raw fstab file looks like this:-" >> $LOGFILE 1165 echo "Your raw fstab file looks like this:" >> $LOGFILE 1166 echo "------------------------------------" >> $LOGFILE 1166 1167 cat $MY_FSTAB >> $LOGFILE 1167 echo "Your mountlist will look like this:-" | tee -a $LOGFILE 1168 echo "Your mountlist will look like this:" | tee -a $LOGFILE 1169 echo "-----------------------------------" >> $LOGFILE 1168 1170 1169 1171 # scratchdir, mountlist(OUT) … … 1185 1187 if [ $LVM != "false" ]; then 1186 1188 echo -en "\rAnalyzing LVM...\r" 1187 all_partitions=`$MINDI_LIB/analyze-my-lvm | grep -F ">>>" | cut -d' ' -f2-32`1189 $MINDI_LIB/analyze-my-lvm | grep -F ">>>" | cut -d' ' -f2-32 > $MINDI_TMP/lvm.res 1188 1190 if [ $? -eq -1 ]; then 1189 1191 LVM="false" 1190 1192 fi 1193 all_partitions=`cat $MINDI_TMP/lvm.res` 1191 1194 fi 1192 1195 all_partitions="$all_partitions `ListAllPartitions 2> /dev/null`" … … 2271 2274 fi 2272 2275 # patch from Bill <bill@iwizard.biz> - 2003/08/25 2273 echo "------- $FDISK -l $device log ------------" >> $LOGFILE2274 2276 res=`$FDISK -s $device 2>> $LOGFILE` 2275 echo "------- $FDISK log end ------------" >> $LOGFILE2276 2277 # end patch 2277 2278 [ "$res" = "" ] && res=`df -k -P -x supermount | tr -s '\t' ' ' | grep -F "$device " | cut -d' ' -f2`
Note:
See TracChangeset
for help on using the changeset viewer.