diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-20 21:40:08 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-20 21:40:08 +0000 |
commit | 6d71a751ac7d625b4fcadb45beca9cae92368ce6 (patch) | |
tree | 4f9b74dc9ddc89dffa958926ac689601fc79415f | |
parent | 28777eaa53f04a5f2d743c474756150920efa1e5 (diff) | |
download | initscripts-6d71a751ac7d625b4fcadb45beca9cae92368ce6.tar initscripts-6d71a751ac7d625b4fcadb45beca9cae92368ce6.tar.gz initscripts-6d71a751ac7d625b4fcadb45beca9cae92368ce6.tar.bz2 initscripts-6d71a751ac7d625b4fcadb45beca9cae92368ce6.tar.xz initscripts-6d71a751ac7d625b4fcadb45beca9cae92368ce6.zip |
*** empty log message ***
-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 |