diff options
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | initscripts.spec | 6 | ||||
-rw-r--r-- | src/minilogd.c | 2 |
3 files changed, 24 insertions, 2 deletions
@@ -1,5 +1,23 @@ 1999-03-16 Bill Nottingham <notting@redhat.com> + * initscripts.spec: bump rev to 3.96 + + * src/process.c: + if we are 'in initlog' rewrite output so it goes to initlog + + * src/initlog.c: + if /dev/log exists on ROFS, that *doesn't* mean syslog is running + + * rc.d/init.d/functions: remove cruft + + * rc.d/init.d/functions: add a 'PASSED' result + fix ROFS logging to be sane + + * rc.d/rc.sysinit: + rewrite fsck so you don't get FAILED on a passed check + +1999-03-16 Bill Nottingham <notting@redhat.com> + * sysconfig/network-scripts/ifdown-ppp: fix for CHATPID (bug #1343) 1999-03-15 Bill Nottingham <notting@redhat.com> diff --git a/initscripts.spec b/initscripts.spec index 166edce1..83edc852 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: The inittab file and the /etc/rc.d scripts. Name: initscripts -%define version 3.95 +%define version 3.96 Version: %{version} Copyright: GPL Group: System Environment/Base @@ -168,6 +168,10 @@ rm -rf $RPM_BUILD_ROOT %doc sysconfig.txt %changelog +* Tue Mar 16 1999 Bill Nottingham <notting@redhat.com> +- fix ROFS logging +- make fsck produce more happy output + * Mon Mar 15 1999 Bill Nottingham <notting@redhat.com> - doc updates - support for SYSFONTACM, other console-tools stuff diff --git a/src/minilogd.c b/src/minilogd.c index f1b620bf..345ec3c4 100644 --- a/src/minilogd.c +++ b/src/minilogd.c @@ -79,7 +79,7 @@ void runDaemon(int sock) { signal(SIGBUS,cleanup); signal(SIGTERM,cleanup); done = 0; - /* Get stat info on dev log so we can later check to make sure we + /* Get stat info on /dev/log so we can later check to make sure we * still own it... */ stat(_PATH_LOG,&s1); while (!done) { |