Changeset 2a97a7ca for chapter07


Ignore:
Timestamp:
08/01/2001 12:02:28 AM (23 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v3_0, v3_1, v3_2, v3_3, v4_0, v4_1, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
a9e55e7
Parents:
2dff95b
Message:

added print_error_msg to rcS script

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@878 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter07
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter07/rc.xml

    r2dff95b r2a97a7ca  
    4545        echo "Press a key to continue..."
    4646        read
     47
    4748}
    4849
  • chapter07/rcS.xml

    r2dff95b r2a97a7ca  
    1515#
    1616
     17source /etc/init.d/functions
     18
     19print_error_msg()
     20{
     21 
     22        echo
     23        $FAILURE
     24        echo -n "You should not read this error message. It means "
     25        echo "that an unforeseen error "
     26        echo -n "took place and subscript $i exited with "
     27        echo "a return value "
     28        echo -n "of $error_value for an unknown reason. If you're able "
     29        echo "to trace this error down "
     30        echo -n "to a bug in one of the files provided by this book, "
     31        echo "please be so kind to "
     32        echo -n "inform us at lfs-discuss@linuxfromscratch.org"
     33        $NORMAL
     34        echo
     35        echo
     36        echo "Press a key to continue..."
     37        read
     38
     39}
     40
    1741runlevel=S
    1842prevlevel=N
     
    3054        [ ! -f  "$i" ] &amp;&amp; continue;
    3155                $i start
     56                error_value=$?
     57
     58                if [ $error_value != 0 ]
     59                then
     60                        print_error_msg
     61                fi
    3262done
    3363
Note: See TracChangeset for help on using the changeset viewer.