Changeset 2255 in MondoRescue for branches/2.2.9/mindi/rootfs/sbin/init


Ignore:
Timestamp:
Jul 5, 2009, 2:58:53 AM (15 years ago)
Author:
Bruno Cornec
Message:
  • Fix #336 by extending the previous feature to a double call (pre and post) on the boot loader line to be able to call cripts either before mondorestore and/or after its execution
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi/rootfs/sbin/init

    r2253 r2255  
    826826    LogIt "backup-media-type is specified in config file - great."
    827827    LogIt "Calling post-init"
     828    # start-nfs moved it under /tmp as the NFS share is already unmounted
     829    if [ "`echo $pre | grep -E '^/tmp/isodir'`" ]; then
     830        post=`echo $pre | sed 's|^/tmp/isodir|/tmp|'`
     831    fi
     832    if [ -x $pre ]; then
     833        echo "Executing preliminary script $pre"
     834        LogIt "Executing preliminary script $pre"
     835        $pre
     836    fi
    828837    post-init
    829838else
     
    831840    LogIt "I think this media has no archives on it."
    832841fi
    833 if [ "`grep -i "script=" /proc/cmdline`" ] ; then
     842if [ "`grep -i "post=" /proc/cmdline`" ] ; then
    834843    for i in `cat /proc/cmdline` ; do
    835         echo $i | grep -qi script= && script=`echo $i | cut -d= -f2`
     844        echo $i | grep -qi post= && post=`echo $i | cut -d= -f2`
    836845    done
    837846    # start-nfs moved it under /tmp as the NFS share is already unmounted
    838     if [ "`echo $script | grep -E '^/tmp/isodir'`" ]; then
    839         script=`echo $script | sed 's|^/tmp/isodir|/tmp|'`
    840     fi
    841     if [ -x $script ]; then
    842         echo "Executing final script $script"
    843         LogIt "Executing final script $script"
    844         if [ "`echo $script | grep -E '^/mnt/RESTORING'`" ]; then
     847    if [ "`echo $post | grep -E '^/tmp/isodir'`" ]; then
     848        post=`echo $post | sed 's|^/tmp/isodir|/tmp|'`
     849    fi
     850    if [ -x $post ]; then
     851        echo "Executing final script $post"
     852        LogIt "Executing final script $post"
     853        if [ "`echo $post | grep -E '^/mnt/RESTORING'`" ]; then
    845854            mount-me
    846855        fi
    847         $script
    848         if [ "`echo $script | grep -E '^/mnt/RESTORING'`" ]; then
     856        $post
     857        if [ "`echo $post | grep -E '^/mnt/RESTORING'`" ]; then
    849858            unmount-me
    850859        fi
Note: See TracChangeset for help on using the changeset viewer.