diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | initscripts.spec | 9 | ||||
-rw-r--r-- | src/initlog.c | 1 |
3 files changed, 19 insertions, 3 deletions
@@ -1,3 +1,15 @@ +1999-04-09 Bill Nottingham <notting@redhat.com> + + * src/process.c, src/process.h, src/initlog.c, src/initlog.h, src/minilogd.c: + fixeds for the case where /dev/log exists at boot + +1999-04-08 Bill Nottingham <notting@redhat.com> + + * sysconfig/network-scripts/ifup, sysconfig/network-scripts/ifup-aliases: + check for 2.0 kernels before doing some stuff + + * initscripts.spec: make rc.local config(noreplace) + 1999-04-07 Bill Nottingham <notting@redhat.com> * rc.d/init.d/functions: diff --git a/initscripts.spec b/initscripts.spec index 4b982060..78465871 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,10 +1,10 @@ Summary: The inittab file and the /etc/rc.d scripts. Name: initscripts -%define version 4.01 +%define version 4.02 Version: %{version} Copyright: GPL Group: System Environment/Base -Release: 2 +Release: 1 Source: initscripts-%{version}.tar.gz BuildRoot: /var/tmp/initbld Requires: mingetty, bash, /bin/awk, /bin/sed, mktemp, modutils >= 2.1.85-3, e2fsprogs, sysklogd >= 1.3.31, procps @@ -181,6 +181,11 @@ rm -rf $RPM_BUILD_ROOT %changelog + +* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com> +- fix more logic in initlog +- fix for kernel versions in ifup-aliases + * Wed Apr 07 1999 Bill Nottingham <notting@redhat.com> - fix daemon() function so you can specify pid to look for diff --git a/src/initlog.c b/src/initlog.c index 1a77bd1f..3a5d41c5 100644 --- a/src/initlog.c +++ b/src/initlog.c @@ -104,7 +104,6 @@ int startDaemon() { /* kid */ execlp("minilogd","minilogd",NULL); perror("exec"); - abort(); exit(-1); } } |