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