slitaz-boot-scripts diff etc/init.d/rcS @ rev 107

Fix typos
author Mike D. Smith <MikeDSmith25@gmail.com>
date Sat Jul 19 06:54:49 2008 +0000 (2008-07-19)
parents b8357bb683ae
children d6f7d8765539
line diff
     1.1 --- a/etc/init.d/rcS	Thu Jul 17 14:11:09 2008 +0000
     1.2 +++ b/etc/init.d/rcS	Sat Jul 19 06:54:49 2008 +0000
     1.3 @@ -1,6 +1,6 @@
     1.4  #!/bin/sh
     1.5  # /etc/init.d/rcS - Initial boot script for SliTaz GNU/Linux. rcS is the main
     1.6 -# initialisation script used to check fs, mount, clean, run scripts and start
     1.7 +# initialization script used to check fs, mount, clean, run scripts and start
     1.8  # daemons.
     1.9  #
    1.10  # Config file is : /etc/rcS.conf
    1.11 @@ -35,8 +35,8 @@
    1.12  echo "Remounting rootfs read/write... "
    1.13  /bin/mount -o remount,rw /
    1.14  
    1.15 -# Mount all stuff from /etc/fstab.
    1.16 -echo "Mounting all staff from fstab... "
    1.17 +# Mount filesystems in /etc/fstab.
    1.18 +echo "Mounting filesystems in fstab... "
    1.19  /bin/mount -a
    1.20  
    1.21  # Start Udev to populate /dev and handle hotplug events
    1.22 @@ -53,8 +53,8 @@
    1.23  
    1.24  else #logged
    1.25  
    1.26 -# Creat /dev/cdrom if needed (symlink does not exist on LiveCD).
    1.27 -# Add also /dev/cdrom to fstab if entry dos not exist.
    1.28 +# Create /dev/cdrom if needed (symlink does not exist on LiveCD).
    1.29 +# Also add /dev/cdrom to fstab if entry does not exist.
    1.30  #
    1.31  DRIVE_NAME=`cat /proc/sys/dev/cdrom/info | grep "drive name" | cut -f 3`
    1.32  if grep -q " cdrom=" /proc/cmdline; then
    1.33 @@ -151,7 +151,7 @@
    1.34  fi
    1.35  
    1.36  # Start all scripts specified with $RUN_SCRIPTS.
    1.37 -echo "Executing all initialisation scripts..."
    1.38 +echo "Executing all initialization scripts..."
    1.39  for script in $RUN_SCRIPTS
    1.40  do
    1.41  	if [ -x /etc/init.d/$script ]; then
    1.42 @@ -159,7 +159,7 @@
    1.43  	fi
    1.44  done
    1.45  
    1.46 -# Re-source main config file, in Live mode daemons list ca be modified 
    1.47 +# Re-source main config file. In Live mode, daemons list can be modified 
    1.48  # by boot options.
    1.49  . /etc/rcS.conf
    1.50