Changeset 2537 in MondoRescue
- Timestamp:
- Jan 8, 2010, 5:29:52 PM (15 years ago)
- Location:
- branches/2.2.9/mindi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mindi/README.bootparam
r2533 r2537 61 61 62 62 pre=/path/to/script 63 Execute a pre-configuration script before calling mondorestore. Could be an NFS shared script e.g., or a script located in the initrd. 63 Execute a pre-configuration script before calling mondorestore. Could be an NFS shared script e.g., or a script located in the initrd. Eg: pre=/tmp/isodir/my-pre.sh. Note that the script should be executable. 64 64 65 65 post=/path/to/script 66 Execute a final script before rebooting the machine at the end of the restoration. Could be an NFS shared script e.g., or a script located on the restored disk or in the initrd. 66 Execute a final script before rebooting the machine at the end of the restoration. Could be an NFS shared script e.g., or a script located on the restored disk or in the initrd. Eg: post=/tmp/isodir/my-post.sh. Note that the script should be executable. 67 67 68 68 serial=/dev/ttySx -
branches/2.2.9/mindi/analyze-my-lvm
r2536 r2537 52 52 fi 53 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" 54 if [ -f $MINDI_TMP/excludedvgs ]; then 55 if [ "`grep $volume_group $MINDI_TMP/excludedvgs`" = "" ]; then 56 echo "# $LVMCMD lvcreate$params -n $logical_volume $volume_group" 57 fi 56 58 fi 57 59 rm -f $MINDI_TMP/excludedvgs
Note:
See TracChangeset
for help on using the changeset viewer.