diff options
author | Bill Nottingham <notting@redhat.com> | 2000-06-15 18:56:54 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-06-15 18:56:54 +0000 |
commit | 60a0dcc9b21edc6777a4392daba44eaa06b1fc9f (patch) | |
tree | afd1f617869f8eee36356c51653975da8db7f82a /rc.d/rc.sysinit | |
parent | 855e91894a00e7f237427af5e0d2d96d0833d777 (diff) | |
download | initscripts-60a0dcc9b21edc6777a4392daba44eaa06b1fc9f.tar initscripts-60a0dcc9b21edc6777a4392daba44eaa06b1fc9f.tar.gz initscripts-60a0dcc9b21edc6777a4392daba44eaa06b1fc9f.tar.bz2 initscripts-60a0dcc9b21edc6777a4392daba44eaa06b1fc9f.tar.xz initscripts-60a0dcc9b21edc6777a4392daba44eaa06b1fc9f.zip |
/etc/rc.d/init.d -> /etc/init.d. Wheeeeee.
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 01fe52b3..8c72cfc2 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -1,13 +1,13 @@ #!/bin/sh # -# /etc/rc.d/rc.sysinit - run once at boot time +# /etc/rc.sysinit - run once at boot time # # Taken in part from Miquel van Smoorenburg's bcheckrc. # # Rerun ourselves through initlog if [ -z "$IN_INITLOG" ]; then - [ -f /sbin/initlog ] && exec /sbin/initlog $INITLOG_ARGS -r /etc/rc.d/rc.sysinit + [ -f /sbin/initlog ] && exec /sbin/initlog $INITLOG_ARGS -r /etc/rc.sysinit fi # If we're using devfs, start devfsd now - we need the old device names @@ -30,7 +30,7 @@ else fi # Source functions -. /etc/rc.d/init.d/functions +. /etc/init.d/functions # Print a banner. ;) echo -en "\t\t\tWelcome to " @@ -304,8 +304,8 @@ if [ -f /proc/sys/kernel/modprobe ]; then fi # Load modules (for backward compatibility with VARs) -if [ -f /etc/rc.d/rc.modules ]; then - /etc/rc.d/rc.modules +if [ -f /etc/rc.modules ]; then + /etc/rc.modules fi # Add raid devices @@ -492,8 +492,8 @@ swapon -a >/dev/null 2>&1 action "Enabling swap space" /bin/true # Initialize the serial ports. -if [ -f /etc/rc.d/rc.serial ]; then - . /etc/rc.d/rc.serial +if [ -f /etc/rc.serial ]; then + . /etc/rc.serial fi # If a SCSI tape has been detected, load the st module unconditionally |