Changeset 3542 in MondoRescue for branches/3.2/mindi
- Timestamp:
- Mar 24, 2016, 5:48:03 PM (9 years ago)
- Location:
- branches/3.2/mindi
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mindi/mindi
r3541 r3542 2142 2142 fi 2143 2143 if [ -e "$MONDO_SHARE/restore-scripts" ]; then 2144 cp -Rdf $MONDO_SHARE/restore-scripts/* .2>> $LOGFILE2144 cp -Rdf $MONDO_SHARE/restore-scripts/* $bigdir/usr/bin 2>> $LOGFILE 2145 2145 [ $? -ne 0 ] && [ _"$MONDO_SHARE" != _"" ] && Die "Cannot find/install $MONDO_SHARE/restore-scripts" 2146 2146 fi 2147 2147 if [ -d "/lib/dev-state" ]; then 2148 cp -a /lib/dev-state ./lib/ 2>> $MINDI_TMP/$$.log || LogAll "ERROR: Unable to handle /lib/dev-state" $MINDI_TMP/$$.log2148 cp -a /lib/dev-state $bigdir/lib/ 2>> $MINDI_TMP/$$.log || LogAll "ERROR: Unable to handle /lib/dev-state" $MINDI_TMP/$$.log 2149 2149 fi 2150 2150 TOTAL_BIGDIR_SIZE=`du -sk $bigdir | cut -f1` … … 2263 2263 LogFile "INFO: Copying $LDLINUXE64 to $efidir" 2264 2264 cp $LDLINUXE64 $efidir 2>> $LOGFILE || Die "Cannot copy $LDLINUXE64 to $efidir). Did you run out of disk space?" 2265 cp $LDLINUXE64/../libutil.c32 $efidir 2>> $LOGFILE || Die "Cannot copy $LDLINUXE64 to $efidir). Did you run out of disk space?" 2265 2266 fi 2266 2267 fi -
branches/3.2/mindi/rootfs/etc/init.d/rcS
r3526 r3542 1129 1129 LogIt "Executing final script $post" 1130 1130 if [ "`echo $post | grep -E '^/mnt/RESTORING'`" ]; then 1131 m ount-me1131 mr-mount-me 1132 1132 fi 1133 1133 chmod 755 $post 1134 1134 $post 1135 1135 if [ "`echo $post | grep -E '^/mnt/RESTORING'`" ]; then 1136 unmount-me1136 mr-unmount-me 1137 1137 fi 1138 1138 fi -
branches/3.2/mindi/rootfs/usr/sbin/post-init
r3279 r3542 50 50 fi 51 51 52 for i in m ount-meunmount-me mondorestore ; do52 for i in mr-mount-me mr-unmount-me mondorestore ; do 53 53 if which $i > /dev/null 2> /dev/null ; then 54 54 LogIt "$i found"
Note:
See TracChangeset
for help on using the changeset viewer.