--- src/paths.h.orig Wed Nov 26 08:23:12 1997 +++ src/paths.h Wed Jan 7 12:48:50 1998 @@ -23,15 +23,15 @@ #define INITTAB "/etc/inittab" /* Location of inittab */ #define INIT "/sbin/init" /* Location of init itself. */ #define NOLOGIN "/etc/nologin" /* Stop user logging in. */ -#define FASTBOOT "/fastboot" /* Enable fast boot. */ -#define FORCEFSCK "/forcefsck" /* Force fsck on boot */ +#define FASTBOOT "/etc/fastboot" /* Enable fast boot. */ +#define FORCEFSCK "/etc/forcefsck" /* Force fsck on boot */ #define SDPID "/var/run/shutdown.pid" /* PID of shutdown program */ #define IOSAVE "/etc/ioctl.save" /* termios settings for SU */ #define SHELL "/bin/sh" /* Default shell */ -#define INITSCRIPT "/etc/initscript" /* Initscript. */ +#define INITSCRIPT "/sbin/initscript" /* Initscript. */ #if 0 -#define HALTSCRIPT1 "/etc/init.d/halt" /* Called by "fast" shutdown */ +#define HALTSCRIPT1 "/etc/init.d/rc.halt" /* Called by "fast" shutdown */ #define HALTSCRIPT2 "/etc/rc.d/rc.0" /* Called by "fast" shutdown */ -#define REBOOTSCRIPT1 "/etc/init.d/reboot" /* Ditto. */ +#define REBOOTSCRIPT1 "/etc/init.d/rc.reboot" /* Ditto. */ #define REBOOTSCRIPT2 "/etc/rc.d/rc.6" /* Ditto. */ #endif --- man/initscript.5.orig Wed Jan 7 12:49:13 1998 +++ man/initscript.5 Wed Jan 7 12:49:44 1998 @@ -2,15 +2,15 @@ .SH NAME initscript \- script that executes inittab commands. .SH SYNOPSIS -/bin/sh /etc/initscript id runlevels action process +/bin/sh /sbin/initscript id runlevels action process .SH DESCRIPTION -When the shell script \fI/etc/initscript\fP is present, \fBinit\fP +When the shell script \fI/sbin/initscript\fP is present, \fBinit\fP will use it to execute the commands from \fIinittab\fP. This script can be used to set things like \fBulimit\fP and \fBumask\fP default values for every process. .SH EXAMPLES This is a sample initscript, which might be installed on your -system as \fI/etc/initscript.sample\fP. +system as \fI/sbin/initscript.sample\fP. .RS .sp .nf @@ -20,7 +20,7 @@ # initscript Executed by init(8) for every program it # wants to spawn like this: # -# /bin/sh /etc/initscript +# /bin/sh /sbin/initscript # # Set umask to safe level, and enable core dumps. --- src/initscript.sample.orig Wed Jan 7 12:56:15 1998 +++ src/initscript.sample Wed Jan 7 12:56:38 1998 @@ -1,14 +1,14 @@ # -# initscript If this script is intalled as /etc/initscript, +# initscript If this script is intalled as /sbin/initscript, # it is executed by init(8) for every program it # wants to spawn like this: # -# /bin/sh /etc/initscript +# /bin/sh /sbin/initscript # # It can be used to set the default umask and ulimit # of all processes. By default this script is installed -# as /etc/initscript.sample, so to enable it you must -# rename this script first to /etc/initscript. +# as /sbin/initscript.sample, so to enable it you must +# rename this script first to /sbin/initscript. # # Version: @(#)initscript 1.10 10-Dec-1995 MvS. #