source: bootscripts/lfs/init.d/rc@ 7b08ae24

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 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 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
Last change on this file since 7b08ae24 was 2f0d64d, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Fixes to bootscripts:

  • Remove unneeded function literals.
  • Fix pidlist logic in statusproc.
  • Fix statusproc usage statement.
  • Add nodevtmpfs in mountfs stop.
  • Be consistent wtih #!/bin/sh

Add nodump to xml so command to print out 70-persistent-net.rules
will not be used in jhalfs. Fixes a problem in kvm.

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

  • Property mode set to 100644
File size: 5.9 KB
Line 
1#!/bin/sh
2########################################################################
3# Begin rc
4#
5# Description : Main Run Level Control Script
6#
7# Authors : Gerard Beekmans - gerard@linuxfromscratch.org
8# : DJ Lucas - dj@linuxfromscratch.org
9# Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
10#
11# Version : LFS 7.0
12#
13########################################################################
14
15. /lib/lsb/init-functions
16
17print_error_msg()
18{
19 log_failure_msg
20 # $i is set when called
21 MSG="FAILURE:\n\nYou should not be reading this error message.\n\n"
22 MSG="${MSG}It means that an unforeseen error took place in\n"
23 MSG="${MSG}${i},\n"
24 MSG="${MSG}which exited with a return value of ${error_value}.\n"
25
26 MSG="${MSG}If you're able to track this error down to a bug in one of\n"
27 MSG="${MSG}the files provided by the files provided by\n"
28 MSG="${MSG}the ${DISDRI_MINI} book, please be so kind to inform us at\n"
29 MSG="${MSG}${DISTRO_CONTACT}.\n"
30 log_failure_msg "${MSG}"
31
32 log_info_msg "Press Enter to continue..."
33 wait_for_user
34}
35
36check_script_status()
37{
38 # $i is set when called
39 if [ ! -f ${i} ]; then
40 log_warning_msg "${i} is not a valid symlink."
41 continue
42 fi
43
44 if [ ! -x ${i} ]; then
45 log_warning_msg "${i} is not executable, skipping."
46 continue
47 fi
48}
49
50run()
51{
52 if [ -z $interactive ]; then
53 ${1} ${2}
54 return $?
55 fi
56
57 while true; do
58 read -p "Run ${1} ${2} (Yes/no/continue)? " -n 1 runit
59 echo
60
61 case ${runit} in
62 c | C)
63 interactive=""
64 ${i} ${2}
65 ret=${?}
66 break;
67 ;;
68
69 n | N)
70 return 0
71 ;;
72
73 y | Y)
74 ${i} ${2}
75 ret=${?}
76 break
77 ;;
78 esac
79 done
80
81 return $ret
82}
83
84# Read any local settings/overrides
85[ -r /etc/sysconfig/rc.site ] && source /etc/sysconfig/rc.site
86
87DISTRO=${DISTRO:-"Linux From Scratch"}
88DISTRO_CONTACT=${DISTRO_CONTACT:-"lfs-dev@linuxfromscratch.org (Registration required)"}
89DISTRO_MINI=${DISTRO_MINI:-"LFS"}
90IPROMPT=${IPROMPT:-"no"}
91
92# These 3 signals will not cause our script to exit
93trap "" INT QUIT TSTP
94
95[ "${1}" != "" ] && runlevel=${1}
96
97if [ "${runlevel}" == "" ]; then
98 echo "Usage: ${0} <runlevel>" >&2
99 exit 1
100fi
101
102previous=${PREVLEVEL}
103[ "${previous}" == "" ] && previous=N
104
105if [ ! -d /etc/rc.d/rc${runlevel}.d ]; then
106 log_info_msg "/etc/rc.d/rc${runlevel}.d does not exist.\n"
107 exit 1
108fi
109
110if [ "$runlevel" == "6" -o "$runlevel" == "0" ]; then IPROMPT="no"; fi
111
112# Note: In ${LOGLEVEL:-7}, it is ':' 'dash' '7', not minus 7
113if [ "$runlevel" == "S" ]; then dmesg -n "${LOGLEVEL:-7}"; fi
114
115if [ "${IPROMPT}" == "yes" -a "${runlevel}" == "S" ]; then
116 # The total length of the distro welcome string, without escape codes
117 wlen=${wlen:-$(echo "Welcome to ${DISTRO}" | wc -c )}
118 welcome_message=${welcome_message:-"Welcome to ${INFO}${DISTRO}${NORMAL}"}
119
120 # The total length of the interactive string, without escape codes
121 ilen=${ilen:-$(echo "Press 'I' to enter interactive startup" | wc -c )}
122 i_message=${i_message:-"Press '${FAILURE}I${NORMAL}' to enter interactive startup"}
123
124
125 # dcol and icol are spaces before the message to center the message
126 # on screen. itime is the amount of wait time for the user to press a key
127 wcol=$(( ( ${COLUMNS} - ${wlen} ) / 2 ))
128 icol=$(( ( ${COLUMNS} - ${ilen} ) / 2 ))
129 itime=${itime:-"3"}
130
131 echo -e "\n\n"
132 echo -e "\\033[${wcol}G${welcome_message}"
133 echo -e "\\033[${icol}G${i_message}${NORMAL}"
134 echo ""
135 read -t "${itime}" -n 1 interactive 2>&1 > /dev/null
136fi
137
138# Make lower case
139[ "${interactive}" == "I" ] && interactive="i"
140[ "${interactive}" != "i" ] && interactive=""
141
142# Read the state file if it exists from runlevel S
143[ -r /var/run/interactive ] && source /var/run/interactive
144
145# Attempt to stop all services started by the previous runlevel,
146# and killed in this runlevel
147if [ "${previous}" != "N" ]; then
148 for i in $(ls -v /etc/rc.d/rc${runlevel}.d/K* 2> /dev/null)
149 do
150 check_script_status
151
152 suffix=${i#/etc/rc.d/rc$runlevel.d/K[0-9][0-9]}
153 prev_start=/etc/rc.d/rc$previous.d/S[0-9][0-9]$suffix
154 sysinit_start=/etc/rc.d/rcS.d/S[0-9][0-9]$suffix
155
156 if [ "${runlevel}" != "0" -a "${runlevel}" != "6" ]; then
157 if [ ! -f ${prev_start} -a ! -f ${sysinit_start} ]; then
158 MSG="WARNING:\n\n${i} can't be "
159 MSG="${MSG}executed because it was not "
160 MSG="${MSG}not started in the previous "
161 MSG="${MSG}runlevel (${previous})."
162 log_warning_msg "$MSG"
163 continue
164 fi
165 fi
166
167 run ${i} stop
168 error_value=${?}
169
170 if [ "${error_value}" != "0" ]; then print_error_msg; fi
171 done
172fi
173
174if [ "${previous}" == "N" ]; then export IN_BOOT=1; fi
175
176if [ "$runlevel" == "6" -a -n "${FASTBOOT}" ]; then
177 touch /fastboot
178fi
179
180
181# Start all functions in this runlevel
182for i in $( ls -v /etc/rc.d/rc${runlevel}.d/S* 2> /dev/null)
183do
184 if [ "${previous}" != "N" ]; then
185 suffix=${i#/etc/rc.d/rc$runlevel.d/S[0-9][0-9]}
186 stop=/etc/rc.d/rc$runlevel.d/K[0-9][0-9]$suffix
187 prev_start=/etc/rc.d/rc$previous.d/S[0-9][0-9]$suffix
188
189 [ -f ${prev_start} -a ! -f ${stop} ] && continue
190 fi
191
192 check_script_status
193
194 case ${runlevel} in
195 0|6)
196 run ${i} stop
197 ;;
198 *)
199 run ${i} start
200 ;;
201 esac
202
203 error_value=${?}
204
205 if [ "${error_value}" != "0" ]; then print_error_msg; fi
206done
207
208# Store interactive variable on switch from runlevel S and remove if not
209if [ "${runlevel}" == "S" -a "${interactive}" == "i" ]; then
210 echo "interactive=\"i\"" > /var/run/interactive
211else
212 rm -f /var/run/interactive 2> /dev/null
213fi
214
215# Copy the boot log on initial boot only
216if [ "${previous}" == "N" -a "${runlevel}" != "S" ]; then
217 cat /run/var/bootlog >> /var/log/boot.log
218
219 # Mark the end of boot
220 echo "--------" >> /var/log/boot.log
221
222 # Remove the temporary file
223 rm -f /run/var/bootlog 2> /dev/null
224fi
225
226# End rc
Note: See TracBrowser for help on using the repository browser.