]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- removed /etc/HOSTNAME,
authorTomasz Pala <gotar@pld-linux.org>
Wed, 4 Jul 2001 22:48:07 +0000 (22:48 +0000)
committerTomasz Pala <gotar@pld-linux.org>
Wed, 4 Jul 2001 22:48:07 +0000 (22:48 +0000)
- cosmetics.

svn-id: @924

rc.d/rc.sysinit

index 010d32987a05cfd652d4d00afe5b9aedb9374d4b..eea9ea7a9927608ad8e01ed64aea2ab008b76175 100755 (executable)
@@ -1,12 +1,17 @@
 #!/bin/sh
 #
 # /etc/rc.d/rc.sysinit - run once at boot time
-# $Id: rc.sysinit,v 1.80 2001/05/25 17:34:51 baggins Exp $
+# $Id: rc.sysinit,v 1.81 2001/07/04 22:48:07 gotar Exp $
 #
 # Taken in part from Miquel van Smoorenburg's bcheckrc.
-# Changes:      Arkadiusz Mi¶kiewicz <misiek@pld.org.pl>
+# Changes:     Arkadiusz Mi¶kiewicz <misiek@pld.org.pl>
 #
 
+# Rerun ourselves through initlog
+if [ -z "$IN_INITLOG" ]; then
+       [ -f /sbin/initlog ] && exec /sbin/initlog -r /etc/rc.d/rc.sysinit
+fi
+
 # Set the path
 PATH=/bin:/sbin:/usr/bin:/usr/sbin
 export PATH
@@ -29,7 +34,7 @@ fi
 # Read functions
 . /etc/rc.d/init.d/functions
 
-# Read network config data.
+# Read network config data
 if [ -r /etc/sysconfig/network ]; then
        . /etc/sysconfig/network
 else
@@ -37,7 +42,7 @@ else
        HOSTNAME=localhost
 fi
 
-# Read system config data.
+# Read system config data
 if [ -r /etc/sysconfig/system ]; then
        . /etc/sysconfig/system
 else
@@ -55,24 +60,31 @@ fi
 # Print welcome message
 nls "\t\t\t%sPowered by %sPLD GNU/Linux%s" "$(termput setaf 6)" "$(termput setaf 2)" "$(termput setaf 7)"
 if is_yes "$PROMPT"; then
-       nls -n "\t\t     Press %sI%s to enter interactive startup." "$(termput setaf 1)" "$(termput setaf 7)"
+       nls -n "\t\t    Press %sI%s to enter interactive startup." "$(termput setaf 1)" "$(termput setaf 7)"
        echo
        sleep 1
 fi
 
-# we need /proc mounted before everything
+# We need /proc mounted before everything
 mount -n -o gid=17 -t proc /proc /proc
 
 # /dev must be also mounted before everything but only if we want use them ;-)
 if is_yes "$MOUNT_DEVFS"; then
-    run_cmd "Mounting Device Filesystem" mount -n -t devfs /dev /dev
+       run_cmd "Mounting Device Filesystem" mount -n -t devfs /dev /dev
 fi
 
-# set up devfsd
-if is_yes "$RUN_DEVFSD"; then
-    if [ -x /sbin/devfsd -a -f /etc/devfsd.conf ]; then
-           run_cmd "Starting Device Filesystem Daemon" /sbin/devfsd /dev
-    fi
+# Set up devfsd
+if [ -c /dev/.devfsd -a -x /sbin/devfsd ]; then
+       run_cmd "Starting Device Filesystem Daemon" /sbin/devfsd /dev
+       if [ -e /dev/cdroms/cdrom0 ]; then
+               ln -sf /dev/cdroms/cdrom0 /dev/cdrom
+       fi
+       if [ -f /etc/sysconfig/mouse ]; then
+               . /etc/sysconfig/mouse
+               if [ -n "$DEVICE" -a "$DEVICE" != "/dev/mouse" ]; then
+                       ln -s $DEVICE /dev/mouse
+               fi
+       fi
 fi
 
 # Set console loglevel
@@ -87,45 +99,45 @@ SRM=0
 UTC=0
 
 if [ -f /etc/sysconfig/clock ]; then
-   . /etc/sysconfig/clock
+       . /etc/sysconfig/clock
 
-   # convert old style clock config to new values
-   if [ "${CLOCKMODE}" = "GMT" ]; then
-      UTC=true
-   elif [ "${CLOCKMODE}" = "ARC" ]; then
-      ARC=true
-   fi
+       # convert old style clock config to new values
+       if [ "${CLOCKMODE}" = "GMT" ]; then
+               UTC=true
+       elif [ "${CLOCKMODE}" = "ARC" ]; then
+               ARC=true
+       fi
 fi
 
 if grep "system serial" /proc/cpuinfo | grep -q MILO ; then
-   ARC=true
+       ARC=true
 fi
 
 CLOCKDEF=""
 CLOCKFLAGS="--hctosys"
 
 case "$UTC" in
-   yes|true)
-    CLOCKFLAGS="$CLOCKFLAGS --utc";
-    CLOCKDEF="$CLOCKDEF (utc)";
-  ;;
-   *)
-    CLOCKFLAGS="$CLOCKFLAGS --localtime";
-    CLOCKDEF="$CLOCKDEF (local)";
-  ;;
+       yes|true)
+               CLOCKFLAGS="$CLOCKFLAGS --utc";
+               CLOCKDEF="$CLOCKDEF (utc)";
+       ;;
+       *)
+       CLOCKFLAGS="$CLOCKFLAGS --localtime";
+       CLOCKDEF="$CLOCKDEF (local)";
+       ;;
 esac
 
 case "$ARC" in
-     yes|true)
-        CLOCKFLAGS="$CLOCKFLAGS -A";
-        CLOCKDEF="$CLOCKDEF (arc)";
-     ;;
+       yes|true)
+               CLOCKFLAGS="$CLOCKFLAGS -A";
+               CLOCKDEF="$CLOCKDEF (arc)";
+       ;;
 esac
 case "$SRM" in
-     yes|true)
-        CLOCKFLAGS="$CLOCKFLAGS -S";
-        CLOCKDEF="$CLOCKDEF (srm)";
-     ;;
+       yes|true)
+               CLOCKFLAGS="$CLOCKFLAGS -S";
+               CLOCKDEF="$CLOCKDEF (srm)";
+       ;;
 esac
 
 # Check if timezone definition is available
@@ -137,10 +149,10 @@ else
        TIME_SETUP_DELAYED=yes
 fi
 
-# Start up swapping.
+# Start up swapping
 run_cmd "Activating swap partitions" swapon -a
 
-# Set the hostname.
+# Set the hostname
 run_cmd "$(nls 'Host:') ${HOSTNAME}" hostname ${HOSTNAME}
 
 # Set the NIS domain name
@@ -162,53 +174,59 @@ else
 fi
 
 if [ -f /forcefsck ]; then
-        fsckoptions="-f $fsckoptions"
+       fsckoptions="-f $fsckoptions"
+fi
+
+if is_yes "$COLOR_INIT"; then
+       fsckoptions="-C $fsckoptions"
+else
+       fsckoptions="-V $fsckoptions"
 fi
 
 _RUN_QUOTACHECK=0
 if awk '{ if ($2 ~ /^\/$/ && ( $3 ~ /^(nfs|romfs)$/ || $6 ~ /^0$/ ) ) exit 1 ; else exit 0}' /etc/fstab; then
 
-    if [ ! -f /fastboot  ]; then
-           show "Checking root filesystem"; started
-           initlog -c "fsck -C -T -a $fsckoptions /"
-
-           rc=$?
-
-           # A return of 2 or higher means there were serious problems.
-           if [ $rc -gt 1 ]; then
-                   # don't use '\n' in nls macro !
-                   echo
-                   echo
-                   nls "*** An error occurred during the file system check."
-                   nls "*** Dropping you to a shell; the system will reboot"
-                   nls "*** when you leave the shell."
-                   echo
-
-                   PS1="$(nls '(Repair filesystem)# ')"; export PS1
-                   if is_yes "$RUN_SULOGIN_ON_ERR"; then
-                           sulogin
-                   else
-                           /bin/sh
-                   fi
+       if [ ! -f /fastboot ]; then
+               show "Checking root filesystems."; started
+               initlog -c "fsck -T -a $fsckoptions /"
+
+               rc=$?
+
+               # A return of 2 or higher means there were serious problems.
+               if [ $rc -gt 1 ]; then
+                       # don't use '\n' in nls macro !
+                       echo
+                       echo
+                       nls "*** An error occurred during the file system check."
+                       nls "*** Dropping you to a shell; the system will reboot"
+                       nls "*** when you leave the shell."
+                       echo
+
+                       PS1="$(nls '(Repair filesystem)# ')"; export PS1
+                       if is_yes "$RUN_SULOGIN_ON_ERR"; then
+                               sulogin
+                       else
+                               /bin/sh
+                       fi
 
-                   run_cmd "Unmounting file systems" umount -a
-                   mount -n -o remount,ro /
-                   run_cmd "Automatic reboot in progress" reboot
-           elif [ "$rc" = "1" ]; then
-                   _RUN_QUOTACHECK=1
-           fi
-    fi
+                       run_cmd "Unmounting file systems" umount -a
+                       mount -n -o remount,ro /
+                       run_cmd "Automatic reboot in progress." reboot
+               elif [ "$rc" = "1" ]; then
+                       _RUN_QUOTACHECK=1
+               fi
+       fi
 
 fi
 
-# check for arguments 
+# Check for arguments
 if grep -iq nopnp /proc/cmdline; then
        PNP=
 else
        PNP=yes
 fi
 
-# set up pnp 
+# Set up pnp
 if [ -x /sbin/isapnp -a -f /etc/isapnp/isapnp.conf ]; then
        if [ -n "$PNP" ] && is_yes "$RUN_ISAPNP"; then
                run_cmd "Setting up ISA PNP devices" /sbin/isapnp /etc/isapnp/isapnp.conf
@@ -216,21 +234,21 @@ if [ -x /sbin/isapnp -a -f /etc/isapnp/isapnp.conf ]; then
 fi
 
 
-# Remount the root filesystem read-write.
+# Remount the root filesystem read-write
 run_cmd "Remounting root filesystem in rw mode" mount -n -o remount,rw /
 
-# Update quotas if fsck was run on /.
+# Update quotas if fsck was run on /
 if [ X"$_RUN_QUOTACHECK" = "X1" -a -x /sbin/quotacheck ]; then
-        run_cmd "Checking root filesystem quotas" /sbin/quotacheck -vug /
+       run_cmd "Checking root filesystem quotas" /sbin/quotacheck -vug /
 fi
 
-# /etc/nologin when starting system
+# Remove /etc/nologin when starting system
 [ -f /etc/nologin.boot ] && rm -f /etc/nologin /etc/nologin.boot
 
 if is_yes "$DELAY_LOGIN" && [ ! -f /etc/nologin ]; then
        show "Enabling Delay Login"; busy
        echo > /etc/nologin
-       nls "System bootup in progress  - please wait" >> /etc/nologin
+       nls "System bootup in progress - please wait" >> /etc/nologin
        echo >> /etc/nologin
        chmod 644 /etc/nologin
        cp -fp /etc/nologin /etc/nologin.boot
@@ -238,17 +256,15 @@ if is_yes "$DELAY_LOGIN" && [ ! -f /etc/nologin ]; then
 fi
 
 # The root filesystem is now read-write, so we can now log via
-# syslog() directly..
+# syslog() directly...
 if [ -n "$IN_INITLOG" ]; then
-    IN_INITLOG=""
+       IN_INITLOG=""
 fi
-    
-echo ${HOSTNAME} > /etc/HOSTNAME
 
 # Clear mtab
 >/etc/mtab
 
-# Enter root and /proc into mtab.
+# Write root and /proc to mtab
 mount -f /
 mount -f /proc
 [ -f /proc/bus/usb/devices ] && mount -f -t usbdevfs usbdevfs /proc/bus/usb
@@ -265,27 +281,27 @@ fi
 rm -f /lib/modules/preferred
 rm -f /lib/modules/default
 if [ -x /sbin/depmod -a -n "$USEMODULES" ]; then
-  if is_yes "$SET_SLINKS"; then
-    # Get ready for kmod if module support in the kernel
-    if [ -z $(uname -r | grep "-") ]; then
-       # we're using a new kernel, no preferred needed
-       mver=$(uname -r)
-    else
-       ktag="$(cat /proc/version)"
-       mtag=grep -l "$ktag" /lib/modules/*/.rhkmvtag 2> /dev/null
-       if [ -n "$mtag" ]; then
-           mver=$(echo $mtag | awk ' { gsub(/\/lib\/modules\//,NIL); gsub(/.rhkmvtag/,NIL); gsub(/[     ].*$/,NIL); print $0 } ')
-       fi
-       if [ -n "$mver" ]; then
-           ln -sf /lib/modules/$mver /lib/modules/default
+       if is_yes "$SET_SLINKS"; then
+               # Get ready for kmod if module support in the kernel
+               if [ -z $(uname -r | grep "-") ]; then
+                       # We're using a new kernel, no preferred needed
+                       mver=$(uname -r)
+               else
+                       ktag="$(cat /proc/version)"
+                       mtag=grep -l "$ktag" /lib/modules/*/.rhkmvtag 2> /dev/null
+                       if [ -n "$mtag" ]; then
+                               mver=$(echo $mtag | awk ' { gsub(/\/lib\/modules\//,NIL); gsub(/.rhkmvtag/,NIL); gsub(/[     ].*$/,NIL); print $0 } ')
+                       fi
+                       if [ -n "$mver" ]; then
+                               ln -sf /lib/modules/$mver /lib/modules/default
+                       fi
+               fi
+
+               [ -n "$mver" -a -f "/boot/module-info-$mver" ] && \
+                       ln -sf /boot/module-info-$mver /boot/module-info
+               [ -n "$mver" -a -f "/boot/System.map-$mver" ] && \
+                       ln -sf /boot/System.map-$mver /boot/System.map
        fi
-    fi
-    
-    [ -n "$mver" -a -f "/boot/module-info-$mver" ] && \
-       ln -sf /boot/module-info-$mver /boot/module-info
-    [ -n "$mver" -a -f "/boot/System.map-$mver" ] && \
-       ln -sf /boot/System.map-$mver /boot/System.map
-  fi
 fi
 
 # Run depmod if RUN_DEPMOD != "no" and:
@@ -293,12 +309,12 @@ fi
 # b) modules.dep is missing
 # c) modules.dep is older than /etc/modules.conf or /lib/modules/$mver
 if ! is_no "$RUN_DEPMOD" && [ -n "$USEMODULES" ]; then
-  if is_yes "$RUN_DEPMOD" || [ -z "$RUN_DEPMOD" ] || \
-     [ "$RUN_DEPMOD" = "ifmissing" -a ! -r /lib/modules/$mver/modules.dep ] ||\
-     [ /lib/modules/$mver/modules.dep -ot /etc/modules.conf ] ||\
-     [ /lib/modules/$mver/modules.dep -ot /lib/modules/$mver ]; then
-       run_cmd "Finding module dependencies" depmod -a
-  fi
+       if is_yes "$RUN_DEPMOD" || [ -z "$RUN_DEPMOD" ] || \
+               [ "$RUN_DEPMOD" = "ifmissing" -a ! -r /lib/modules/$mver/modules.dep ] ||\
+               [ /lib/modules/$mver/modules.dep -ot /etc/modules.conf ] ||\
+               [ /lib/modules/$mver/modules.dep -ot /lib/modules/$mver ]; then
+               run_cmd "Finding module dependencies" depmod -a
+       fi
 fi
 
 if [ -f /proc/sys/kernel/modprobe ]; then
@@ -313,10 +329,10 @@ fi
 
 # Load modules
 if [ -x /etc/rc.d/rc.modules ]; then
-        /etc/rc.d/rc.modules
+       /etc/rc.d/rc.modules
 fi
        
-# load sound modules
+# Load sound modules
 if [ -n "$USEMODULES" ] && is_yes "$LOAD_SOUND"; then
        if grep -s -q "^alias sound-slot-0" /etc/modules.conf ; then
                run_cmd "Loading sound module" modprobe -s sound-slot-0
@@ -331,7 +347,7 @@ if [ -f /proc/mdstat -a -f /etc/raidtab ]; then
 
        rc=0
        
-       for i in $(grep "raiddev" /etc/raidtab | awk '{print $2}')
+       for i in $(grep -v "^#" /etc/raidtab | grep "raiddev" | awk '{print $2}')
        do
                RAIDDEV=$(basename $i)
                RAIDSTAT=$(grep "^$RAIDDEV : active" /proc/mdstat)
@@ -339,7 +355,7 @@ if [ -f /proc/mdstat -a -f /etc/raidtab ]; then
                busy
                if [ -z "$RAIDSTAT" ]; then
                        # Try raidstart first...if that fails then
-                       # fall back to raid0run and if that fails, too
+                       # fall back to raid0run and if that fails too
                        # fall back to raidadd, raidrun.
                        RESULT=1
                        if [ -x /sbin/raidstart ]; then
@@ -366,7 +382,7 @@ if [ -f /proc/mdstat -a -f /etc/raidtab ]; then
                fi
        done
 
-       # A non-zero return means there were problems.
+       # A non-zero return means there were problems
        if [ $rc -gt 0 ]; then
                show "Starting up RAID devices."; fail
                echo
@@ -387,7 +403,7 @@ if [ -f /proc/mdstat -a -f /etc/raidtab ]; then
                run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
                run_cmd "Automatic reboot in progress" reboot
        fi
-       show "Starting up RAID devices"; ok
+       show "Starting up RAID devices."; ok
 fi
 
 # Find and activate volume groups
@@ -398,12 +414,12 @@ fi
 
 # Check filesystems
 if ! grep -q nofsck /proc/cmdline && [ ! -f /fastboot ]; then
-       show "Checking filesystems"; started
-       initlog -c "fsck -C -T -R -A -a $fsckoptions"
+       show "Checking filesystems."; started
+       initlog -c "fsck -T -R -A -a $fsckoptions"
 
        rc=$?
 
-       # A return of 2 or higher means there were serious problems.
+       # A return of 2 or higher means there were serious problems
        if [ $rc -gt 1 ]; then
                echo
                echo
@@ -421,79 +437,24 @@ if ! grep -q nofsck /proc/cmdline && [ ! -f /fastboot ]; then
 
                run_cmd "Unmounting file systems" umount -a
                run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
-               run_cmd "Automatic reboot in progress" reboot
+               run_cmd "Automatic reboot in progress." reboot
        elif [ "$rc" = "1" -a -x /sbin/quotacheck ]; then
                if [ -x /sbin/convertquota ]; then
                        if [ -f /quota.user ]; then
-                           /sbin/convertquota -u / && rm -f /quota.user
+                               /sbin/convertquota -u / && rm -f /quota.user
                        fi
                        if [ -f /quota.group ]; then
-                           /sbin/convertquota -g / && rm -f /quota.group
+                               /sbin/convertquota -g / && rm -f /quota.group
                        fi
                fi
                run_cmd "Checking filesystem quotas" /sbin/quotacheck -v -u -g -R -a
        fi
 fi
 
-# Mount all other filesystems (except for NFS and /proc, which is already
+# Mount all other filesystems (except for NFS and /proc, which are already
 # mounted). Contrary to standard usage,
 # filesystems are NOT unmounted in single user mode.
-run_cmd "Mounting local filesystems" mount -a -t nonfs,smbfs,ncpfs,proc
-
-# Now do some workaround - encrypted filesystems couldn't have been fsck-ed
-# before mount - that's where the password is entered.
-# mount is buggy - when remounting loopback filesystem, loop=XXX
-# option is removed from /etc/mtab
-if grep -q "encryption=" /etc/fstab; then
-       show "Checking encrypted filesystems"; started
-       LOOPLIST="$(
-       grep "encryption=" /etc/fstab | grep -v 'noauto' | grep -w 'ro' |\
-       while read FILE DIR TYPE OPTS TMP1; do
-               LOOP="`cat /proc/mounts | awk '$2 == "'"$DIR"'" { print $1 }'`"
-               echo "$LOOP"
-       done
-       grep "encryption=" /etc/fstab | grep -vw 'ro\|noauto' |\
-       while read FILE DIR TYPE OPTS TMP1; do
-               LOOP="`cat /proc/mounts | awk '$2 == "'"$DIR"'" { print $1 }'`"
-               LOOPLIST="$LOOPLIST $LOOP"
-               NEWOPTS="remount,`echo "$OPTS" | sed 's#loop\(=[^,]*\)\?#loop='"$LOOP"'#'`,ro"
-               echo "$LOOP"
-               mount "$DIR" -o "$NEWOPTS"
-       done
-       )"
-       
-       initlog -c "fsck -T -C -a $fsckoptions $LOOPLIST"
-       rc=$?
-
-       # A return of 2 or higher means there were serious problems.
-       if [ $rc -gt 1 ]; then
-               echo "\n\n"
-               nls "*** An error occurred during the file system check."
-               nls "*** Dropping you to a shell; the system will reboot"
-               nls "*** when you leave the shell."
-               echo
-
-               PS1="`nls '(Repair filesystem)# '`"; export PS1
-               if is_yes "$RUN_SULOGIN_ON_ERR"; then
-                       sulogin
-               else
-                       /bin/sh
-               fi
-
-               run_cmd "Unmounting file systems" umount -a
-               run_cmd "Remounting root filesystem in ro mode" mount -n -o remount,ro /
-               run_cmd "Automatic reboot in progress." reboot
-       fi
-       
-       show "Remounting encrypted filesystems back in rw mode"; busy
-       grep "encryption=" /etc/fstab | grep -vw 'ro\|noauto' |\
-       while read FILE DIR TYPE OPTS TMP1; do
-               LOOP="`cat /proc/mounts | awk '$2 == "'"$DIR"'" { print $1 }'`"
-               NEWOPTS="remount,`echo "$OPTS" | sed 's#loop\(=[^,]*\)\?#loop='"$LOOP"'#'`,rw"
-               mount "$DIR" -o "$NEWOPTS"
-       done
-       ok
-fi
+run_cmd "Mounting local filesystems." mount -a -t nonfs,smbfs,ncpfs,proc
 
 # Set the clock if timezone definition wasn't available (eg. /usr not mounted)
 if is_yes "$TIME_SETUP_DELAYED"; then
@@ -506,17 +467,17 @@ if [ -x /sbin/quotaon ]; then
        run_cmd "Turning on quotas for local filesystems" /sbin/quotaon -a
 fi
 
-# Initialize the serial ports.
+# Initialize the serial ports
 if [ -f /etc/rc.d/rc.serial ]; then
        . /etc/rc.d/rc.serial
 fi
 
 if [ -f /proc/sys/kernel/panic -a "$PANIC_REBOOT_TIME" -gt "0" ]; then
-       show "Setting %s seconds for kernel reboot after panic" "$PANIC_REBOOT_TIME"; busy
-       if (sysctl -w kernel.panic=$PANIC_REBOOT_TIME 2>&1 >/dev/null); then ok; else fail; fi
+       show 'Setting %s seconds for kernel reboot after panic.' "$PANIC_REBOOT_TIME"; busy
+       if (sysctl -w kernel.panic=$PANIC_REBOOT_TIME 2> /dev/null); then ok; else fail; fi
 fi
 
-# Clean out /etc & /var/{run/*,log/{b,w}tmpx}}.
+# Clean out /etc & /var/{run/*,log/{b,w}tmpx}}
 rm -f /etc/mtab~ /fastboot /fsckoptions /forcefsck
 
 {
@@ -539,13 +500,13 @@ if is_yes "$CLEAN_TMP"; then
        rm -rf /tmp/*
 fi
 
-# Delete UUCP lock files.
+# Delete UUCP lock files
 rm -f /var/lock/LCK*
 
-# Delete stale subsystem files.
+# Delete stale subsystem files
 rm -f /var/lock/subsys/*
 
-# Delete stale pam_console locks.
+# Delete stale pam_console locks
 rm -f /var/lock/console/*
 rm -f /var/lock/console.lock
 
@@ -559,7 +520,7 @@ rm -f /tmp/.X*-lock
 # Delete Postgres sockets
 rm -f /tmp/.s.PGSQL.*
 
-# Right, now turn on swap in case we swap to files.
+# Right, now turn on swap in case we swap to files
 swapon -a >/dev/null 2>&1
 run_cmd "Enabling swap space" /bin/true
 
@@ -568,13 +529,13 @@ run_cmd "Enabling swap space" /bin/true
 if [ -f /proc/scsi/scsi ] && cat /proc/scsi/scsi | grep -q 'Type:   Sequential-Access' 2>/dev/null ; then
        if cat /proc/devices | grep -qv ' 9 st' ; then
                if [ -n "$USEMODULES" ] ; then
-                       # Try to load the module.  If it fails, ignore it...
+                       # Try to load the module. If it fails, ignore it...
                        insmod -p st >/dev/null 2>&1 && modprobe -s st >/dev/null 2>&1
                fi
        fi
 fi
 
-# there could be a new kernel version.  remove old psdevtab database
+# There could be a new kernel version. Remove old psdevtab database
 rm -f /etc/psdevtab
 
 # Now that we have all of our basic modules loaded and the kernel going,
@@ -582,12 +543,10 @@ rm -f /etc/psdevtab
 dmesg > /var/log/dmesg
 chmod 640 /var/log/dmesg
 
-# Now that we have all of our basic modules loaded and the kernel going,
-# let's dump the syslog ring somewhere so we can find it later
 kill -TERM $(/sbin/pidof getkey) >/dev/null 2>&1
 } &
 if is_yes "$PROMPT"; then
-   /sbin/getkey i && touch /var/run/confirm
+       /sbin/getkey i && touch /var/run/confirm
 fi
 wait
 echo
This page took 0.292958 seconds and 4 git commands to generate.