diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | initscripts.spec | 2 | ||||
-rwxr-xr-x | rc.d/rc | 2 |
3 files changed, 14 insertions, 2 deletions
@@ -1,5 +1,17 @@ 1999-09-20 Bill Nottingham <notting@redhat.com> + * src/process.c: don't dup stdin. + + * rc.d/rc: + Don't run rc.local through initlog. + + * sysconfig/network-scripts/ifcfg-lo: + add note about conflicts with gated. + + * rc.d/init.d/halt: just call swapoff once + + * rc.d/init.d/halt: typo + * rc.d/init.d/halt: do process splatting for final umount too. diff --git a/initscripts.spec b/initscripts.spec index ef282d25..b3f6b282 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 4.43 +%define version 4.44 Version: %{version} Copyright: GPL Group: System Environment/Base @@ -98,7 +98,7 @@ if [ -d /etc/rc.d/rc$runlevel.d ]; then if egrep -q "(daemon |action )" $i ; then $i start else - if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" -o "$subsys" = "local ]; then + if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" -o "$subsys" = "local" ]; then $i start else action "Starting $subsys" $i start |