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