diff options
author | Bill Nottingham <notting@redhat.com> | 1999-03-16 07:41:05 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-03-16 07:41:05 +0000 |
commit | 724fd6732635659c6c313b5e5590b4ef4da97d22 (patch) | |
tree | 3412bdf866d92351ce55ec0d22e99efa7d8c6f30 | |
parent | dcbdf8dc557e77a75b1f6e82f8b21223650be68c (diff) | |
download | initscripts-724fd6732635659c6c313b5e5590b4ef4da97d22.tar initscripts-724fd6732635659c6c313b5e5590b4ef4da97d22.tar.gz initscripts-724fd6732635659c6c313b5e5590b4ef4da97d22.tar.bz2 initscripts-724fd6732635659c6c313b5e5590b4ef4da97d22.tar.xz initscripts-724fd6732635659c6c313b5e5590b4ef4da97d22.zip |
*** empty log message ***
-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) { |