]> git.pld-linux.org Git - projects/rc-scripts.git/blob - rc.d/rc.sysinit
- print space as last char in prompt
[projects/rc-scripts.git] / rc.d / rc.sysinit
1 #!/bin/sh
2 #
3 # /etc/rc.d/rc.sysinit - run once at boot time
4 # $Id: rc.sysinit,v 1.45 2000/02/17 10:59:14 misiek Exp $
5 #
6 # Taken in part from Miquel van Smoorenburg's bcheckrc.
7 # Changes:      Arkadiusz Mi¶kiewicz <misiek@pld.org.pl>
8 #
9
10 # Set the path
11 PATH=/bin:/sbin:/usr/bin:/usr/sbin
12 export PATH
13
14 # NLS
15 if [ -f /etc/sysconfig/i18n ]; then
16         . /etc/sysconfig/i18n
17         [ -n "$LANG" ] && export LANG || unset LANG
18         [ -n "$LC_CTYPE" ] && export LC_CTYPE || unset LC_CTYPE
19         [ -n "$LC_COLLATE" ] && export LC_COLLATE || unset LC_COLLATE
20         [ -n "$LC_MESSAGES" ] && export LC_MESSAGES || unset LC_MESSAGES
21         [ -n "$LC_NUMERIC" ] && export LC_NUMERIC || unset LC_NUMERIC
22         [ -n "$LC_MONETARY" ] && export LC_MONETARY || unset LC_MONETARY
23         [ -n "$LC_TIME" ] && export LC_TIME || unset LC_TIME
24         [ -n "$LC_ALL" ] && export LC_ALL || unset LC_ALL
25         [ -n "$LANGUAGE" ] && export LANGUAGE || unset LANGUAGE
26         [ -n "$LINGUAS" ] && export LINGUAS || unset LINGUAS
27 fi
28
29 # Read functions
30 . /etc/rc.d/init.d/functions
31
32 # Read network config data.
33 if [ -f /etc/sysconfig/network ]; then
34         . /etc/sysconfig/network
35 else
36         NETWORKING=no
37         HOSTNAME=localhost
38 fi
39
40 # Read system config data.
41 if [ -f /etc/sysconfig/system ]; then
42         . /etc/sysconfig/system
43 else
44         RUN_SULOGIN_ON_ERR=yes
45         RUN_ISAPNP=yes
46         PANIC_REBOOT_TIME=0
47         DELAY_LOGIN=yes
48         CLEAN_TMP=no
49         CONSOLE_LOGLEVEL=1
50         LOAD_SOUND=yes
51         SET_SLINKS=yes
52         RUN_LDCONFIG=yes
53 fi
54
55 # Print welcome message
56 echo -e "\t\t\t`termput setaf 6` Powered by `termput setaf 2`PLD/Linux`termput setaf 7`"
57
58 # Set console loglevel
59 /bin/dmesg -n $CONSOLE_LOGLEVEL
60
61 # we need /proc mounted before starting fsck
62 mount -n -t proc /proc /proc
63
64 # Start up swapping.
65 run_cmd "`nls "Activating swap partitions"`" swapon -a
66
67 # Set the hostname.
68 run_cmd "`nls "Host:"` ${HOSTNAME}" hostname ${HOSTNAME}
69
70 # Set the NIS domain name
71 if [ -n "$NISDOMAIN" ]; then
72         run_cmd "`nls "NIS Domain:"` ${NISDOMAIN}" domainname $NISDOMAIN
73 else
74         domainname ""
75 fi
76
77 if [ -f /fsckoptions ]; then
78         fsckoptions=`cat /fsckoptions`
79 else
80         fsckoptions=''
81 fi
82
83 if [ -f /forcefsck ]; then
84         fsckoptions="-f $fsckoptions"
85 fi
86
87 # Test for NFS Root
88 NFSROOT=`cat /proc/mounts | awk '{ if ($2 ~ /^\/$/ && $3 ~ /^nfs$/) print $3 }'`
89
90 _RUN_QUOTACHECK=0
91 if [ ! -f /fastboot -a ! -n "$NFSROOT" ]; then
92         show "Checking root filesystems."; started
93         initlog -c "fsck -C -T -a $fsckoptions /"
94
95         rc=$?
96
97         # A return of 2 or higher means there were serious problems.
98         if [ $rc -gt 1 ]; then
99                 # don't use '\n' in nls macro !
100                 echo "\n\n"
101                 nls "*** An error occurred during the file system check."
102                 nls "*** Dropping you to a shell; the system will reboot"
103                 nls "*** when you leave the shell."
104                 echo
105
106                 PS1="`nls "(Repair filesystem)# "`"; export PS1
107                 if [ "$RUN_SULOGIN_ON_ERR" = "yes" ]; then
108                         sulogin
109                 else
110                         /bin/sh
111                 fi
112
113                 run_cmd "Unmounting file systems" umount -a
114                 mount -n -o remount,ro /
115                 run_cmd "Automatic reboot in progress." reboot
116         elif [ "$rc" = "1" ]; then
117                 _RUN_QUOTACHECK=1
118         fi
119 fi
120
121 # check for arguments 
122 if grep -i nopnp /proc/cmdline >/dev/null ; then
123         PNP=
124 else
125         PNP=yes
126 fi
127
128 # set up pnp 
129 if [ -x /sbin/isapnp -a -f /etc/isapnp/isapnp.conf ]; then
130         if [ -n "$PNP" -a "$RUN_ISAPNP" = "yes" ]; then
131                 run_cmd "Setting up ISA PNP devices" /sbin/isapnp /etc/isapnp/isapnp.conf
132         fi
133 fi
134
135 # Remount the root filesystem read-write.
136 run_cmd "Remounting root filesystem in rw mode" mount -n -o remount,rw /
137
138 # Update quotas if fsck was run on /.
139 if [ X"$_RUN_QUOTACHECK" = "X1" -a -x /sbin/quotacheck -a ! -n "$NFSROOT" ]; then
140         run_cmd "Checking root filesystem quotas" /sbin/quotacheck -v /
141 fi
142
143 # /etc/nologin when starting system
144 [ -f /etc/nologin.boot ] && rm -f /etc/nologin /etc/nologin.boot
145
146 if [ "$DELAY_LOGIN" = "yes" -a ! -f /etc/nologin ]; then
147         show "Enabling Delay Login"; busy
148         echo > /etc/nologin
149         nls "System bootup in progress  - please wait" >> /etc/nologin
150         echo >> /etc/nologin
151         chmod 644 /etc/nologin
152         cp -fp /etc/nologin /etc/nologin.boot
153         deltext; ok
154 fi
155
156 echo ${HOSTNAME} > /etc/HOSTNAME
157
158 # Clear mtab
159 >/etc/mtab
160
161 # Enter root and /proc into mtab.
162 mount -f /
163 mount -f /proc
164
165 if ! grep -i nomodules /proc/cmdline >/dev/null && [ -f /proc/ksyms ]; then
166         USEMODULES=y
167 else
168         USEMODULES=
169 fi
170
171 # Kernel dependent links
172 rm -f /lib/modules/preferred
173 rm -f /lib/modules/default
174 if [ -x /sbin/depmod -a -n "$USEMODULES" ]; then
175         if [ "$SET_SLINKS" != "no" ]; then
176         # Get ready for kmod if module support in the kernel
177                 if [ -z `uname -r | grep "-"` ]; then
178                 # we're using a new kernel, no preferred needed
179                         mver=`uname -r`
180                 else
181                         ktag="`cat /proc/version`"
182                         mtag=grep -l "$ktag" /lib/modules/*/.rhkmvtag 2> /dev/null
183                         if [ -n "$mtag" ]; then
184                                 mver=echo $mtag | sed -e 's,/lib/modules/,,' -e 's, \
185                                         /.rhkmvtag,,' -e 's,[       ].*$,,'
186                         fi
187                         if [ -n "$mver" ]; then
188                                 ln -sf /lib/modules/$mver /lib/modules/default
189                         fi
190                 fi
191         fi
192         [ -n "$mver" -a -f "/boot/module-info-$mver" ] && \
193                 ln -sf /boot/module-info-$mver /boot/module-info
194         [ -n "$mver" -a -f "/boot/System.map-$mver" ] && \
195                 ln -sf /boot/System.map-$mver /boot/System.map
196
197         if [ "$RUN_DEPMOD" = "yes" ] || [ "$RUN_DEPMOD" = "ifmissing" -a ! -r /lib/modules/$mver/modules.dep ]; then
198                 run_cmd "Finding module dependencies" depmod -a
199         fi
200 fi
201
202 # load sound modules
203 if [ -n "$USEMODULES" -a "$LOAD_SOUND" = "yes" ]; then
204         if grep -s -q "^alias sound" /etc/modules.conf ; then
205                 run_cmd "Loading sound module" modprobe -s sound
206         fi
207         if grep -s -q "^alias midi" /etc/modules.conf ; then
208                 run_cmd "Loading midi module" modprobe -s midi
209         fi
210 fi
211
212 if [ -f /proc/sys/kernel/modprobe ]; then
213         # /proc/sys/kernel/modprobe indicates built-in kmod instead
214         echo "/sbin/modprobe" > /proc/sys/kernel/modprobe
215 fi
216
217 # Load modules
218 if [ -f /etc/rc.d/rc.modules ]; then
219         /etc/rc.d/rc.modules
220 fi
221
222 # Add raid devices
223 if [ -f /proc/mdstat -a -f /etc/raidtab ]; then
224         show "Starting up RAID devices."; started
225
226         rc=0
227         
228         for i in `grep "raiddev" /etc/raidtab | awk '{print $2}'`
229         do
230                 RAIDDEV=`basename $i`
231                 RAIDSTAT=`grep "^$RAIDDEV : active" /proc/mdstat`
232                 if [ -z "$RAIDSTAT" ]; then
233                         # Try raidstart first...if that fails then
234                         # fall back to raid0run.
235                         RESULT=1
236                         if [ -x /sbin/raidstart ]; then
237                                 /sbin/raidstart $i
238                                 RESULT=$?
239                         fi
240                         if [ $RESULT -gt 0 -a -x /sbin/raid0run ]; then
241                                 /sbin/raid0run $i
242                         fi
243                 fi
244         done
245
246         # A non-zero return means there were problems.
247         if [ $rc -gt 0 ]; then
248                 show "Starting up RAID devices."; fail
249                 echo "\n\n"
250                 nls "*** An error occurred during the RAID startup"
251                 nls "*** Dropping you to a shell; the system will reboot"
252                 nls "*** when you leave the shell."
253                 echo
254
255                 PS1="`nls "(RAID Repair)# "`"; export PS1
256                 if [ "$RUN_SULOGIN_ON_ERR" = "yes" ]; then
257                         sulogin
258                 else
259                         /bin/sh
260                 fi
261
262                 run_cmd "Unmounting file systems" umount -a
263                 run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
264                 run_cmd "Automatic reboot in progress" reboot
265         fi
266         show "Starting up RAID devices."; ok
267 fi
268
269 # Check filesystems
270 if [ ! -f /fastboot ]; then
271         show "Checking filesystems."; started
272         initlog -c "fsck -C -T -R -A -a $fsckoptions"
273
274         rc=$?
275
276         # A return of 2 or higher means there were serious problems.
277         if [ $rc -gt 1 ]; then
278                 echo "\n\n"
279                 nls "*** An error occurred during the file system check."
280                 nls "*** Dropping you to a shell; the system will reboot"
281                 nls "*** when you leave the shell."
282                 echo
283
284                 PS1="`nls "(Repair filesystem)# "`"; export PS1
285                 if [ "$RUN_SULOGIN_ON_ERR" = "yes" ]; then
286                         sulogin
287                 else
288                         /bin/sh
289                 fi
290
291                 run_cmd "Unmounting file systems" umount -a
292                 run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
293                 run_cmd "Automatic reboot in progress." reboot
294         elif [ "$rc" = "1" -a -x /sbin/quotacheck ]; then
295                 run_cmd "Checking filesystem quotas" /sbin/quotacheck -v -R -a
296         fi
297 fi
298
299 # Mount all other filesystems (except for NFS and /proc, which is already
300 # mounted). Contrary to standard usage,
301 # filesystems are NOT unmounted in single user mode.
302 run_cmd "Mounting local filesystems." mount -a -t nonfs,smbfs,ncpfs,proc
303
304 # set the console font
305 #if [ -x /sbin/setsysfont ]; then
306 #       show "Loading default system font"; busy
307 #       if (/sbin/setsysfont > /dev/null 2>&1); then deltext; ok; else deltext; fail; fi
308 #fi
309
310 if [ -x /sbin/quotaon ]; then
311         run_cmd "Turning on quotas for local filesystems" /sbin/quotaon -a
312 fi
313
314 # Clean out /etc & /var/{run/*,log/{b,w}tmpx}}.
315 rm -f /etc/mtab~ /fastboot /fsckoptions /forcefsck
316 rm -f /var/run/utmp  
317 :>/var/run/utmpx
318 chown root.utmp /var/run/utmpx
319 chmod 0664 /var/run/utmpx
320
321 # Clean /tmp
322 if [ "$CLEAN_TMP" = "yes" ]; then
323         rm -rf /tmp/*
324 fi
325
326 # Delete UUCP lock files.
327 rm -f /var/lock/LCK*
328
329 # Delete stale subsystem files.
330 rm -f /var/lock/subsys/*
331
332 # Delete stale pam_console locks.
333 rm -f /var/lock/console/*
334 rm -f /var/lock/console.lock
335
336 # Delete stale pid files
337 rm -f /var/run/*.pid
338 rm -f /var/spool/postoffice/.pid.*
339
340 # Delete X locks
341 rm -f /tmp/.X*-lock
342
343 # Delete Postgres sockets
344 rm -f /tmp/.s.PGSQL.*
345
346 # Set the system clock.
347 show "Setting clock"; busy
348
349 ARC=0
350 UTC=0
351 if [ -f /etc/sysconfig/clock ]; then
352         . /etc/sysconfig/clock
353
354         # convert old style clock config to new values
355         if [ "${CLOCKMODE}" = "GMT" ]; then
356                 UTC=true
357         elif [ "${CLOCKMODE}" = "ARC" ]; then
358             ARC=true
359         fi
360 fi
361
362 if [ -x /sbin/hwclock ]; then
363         CLOCKFLAGS="--hctosys"
364         CLOCK=/sbin/hwclock
365 else
366         CLOCKFLAGS="-a"
367         CLOCK=/sbin/clock
368 fi
369
370 case "$UTC" in
371   yes|true)
372         CLOCKFLAGS="$CLOCKFLAGS -u";
373 #       echo -n " (utc)"
374         ;;
375 esac
376
377 case "$ARC" in
378   yes|true)
379         CLOCKFLAGS="$CLOCKFLAGS -A";
380 #       echo -n " (arc)"
381         ;;
382 esac
383
384 #echo -n ": "
385 if ($CLOCK $CLOCKFLAGS); then deltext; ok; else deltext; fail; fi
386
387 show "`nls "Date set to"` `date`"; ok
388
389 # Right, now turn on swap in case we swap to files.
390 swapon -a >/dev/null 2>&1
391 run_cmd "Enabling swap space" /bin/true
392 #show "Enabling swap space"; busy
393 #if [ "`LANG=C swapon -a 2>&1 | grep -v "busy"`" = "" ]; then
394 #       deltext; ok
395 #else
396 #       deltext; fail
397 #fi
398
399 # Initialize the serial ports.
400 if [ -f /etc/rc.d/rc.serial ]; then
401         . /etc/rc.d/rc.serial
402 fi
403
404 # If a SCSI tape has been detected, load the st module unconditionally
405 # since many SCSI tapes don't deal well with st being loaded and unloaded
406 if [ -f /proc/scsi/scsi ] && cat /proc/scsi/scsi | grep -q 'Type:   Sequential-Access' 2>/dev/null ; then
407         if cat /proc/devices | grep -qv ' 9 st' ; then
408                 if [ -n "$USEMODULES" ] ; then
409                         # Try to load the module.  If it fails, ignore it...
410                         insmod -p st >/dev/null 2>&1 && modprobe -s st >/dev/null 2>&1
411                 fi
412         fi
413 fi
414
415 # there could be a new kernel version.  reinit /etc/psdevtab, to be sure.
416 rm -f /etc/psdevtab
417 #if [ -x /bin/ps ]; then
418 #show "Rebuilding /etc/psdevtab database"; busy
419 #if (ps > /dev/null 2>&1); then deltext; ok; else deltext; fail; fi
420 #fi
421
422 if ([ -f /proc/sys/kernel/panic -a "$PANIC_REBOOT_TIME" -gt "0" ] 2>/dev/null); then
423 show "`nls "Sending val. %s to /proc/sys/kernel/panic" "$PANIC_REBOOT_TIME"`"; busy
424 if (echo $PANIC_REBOOT_TIME > /proc/sys/kernel/panic); then deltext; ok; else deltext; fail; fi
425 fi
426
427 # Now that we have all of our basic modules loaded and the kernel going,
428 # let's dump the syslog ring somewhere so we can find it later
429 dmesg > /var/log/dmesg
430 chmod 640 /var/log/dmesg
431
432 # Feed entropy into the entropy pool
433 /etc/rc.d/init.d/random start
This page took 0.088118 seconds and 4 git commands to generate.