aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiloslav Trmac <mitr@volny.cz>2007-01-15 09:15:53 +0000
committerMiloslav Trmac <mitr@volny.cz>2007-01-15 09:15:53 +0000
commite758d4058576dab4a81b6fe5fb376b0ff8fd2635 (patch)
treed7ecde8f3d422162104a8aec17c0d4d39b070f6f
parent22f239f939fe2477742210e859916b90afcfd855 (diff)
downloadinitscripts-r7-93-27-EL.tar
initscripts-r7-93-27-EL.tar.gz
initscripts-r7-93-27-EL.tar.bz2
initscripts-r7-93-27-EL.tar.xz
initscripts-r7-93-27-EL.zip
* Mon Jan 15 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.27.EL-1r7-93-27-EL
- Do unmount network mounts, not doing so can prevent other unmounting other filesystems Reverts: #200915
-rw-r--r--initscripts.spec7
-rwxr-xr-xrc.d/init.d/halt2
2 files changed, 7 insertions, 2 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 5f7f3785..3d380cb9 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: The inittab file and the /etc/init.d scripts.
Name: initscripts
-Version: 7.93.26.EL
+Version: 7.93.27.EL
License: GPL
Group: System Environment/Base
Release: 1
@@ -207,6 +207,11 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Mon Jan 15 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.27.EL-1
+- Do unmount network mounts, not doing so can prevent other unmounting other
+ filesystems
+ Reverts: #200915
+
* Tue Jan 2 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.26.EL-1
- network-functions: source config before calling configure_ccwgroup_device
Resolves: #199139
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt
index bfb48cf6..2a856913 100755
--- a/rc.d/init.d/halt
+++ b/rc.d/init.d/halt
@@ -25,7 +25,7 @@ runcmd() {
halt_get_remaining() {
awk '$2 ~ /^\/$|^\/proc|^\/dev/{next}
$3 == "tmpfs" || $3 == "proc" {print $2 ; next}
- /(^#|loopfs|autofs|nfs|cifs|ncpfs|smbfs|sysfs|devfs|^none|^\/dev\/ram|^\/dev\/root)/ {next}
+ /(^#|loopfs|autofs|sysfs|devfs|^none|^\/dev\/ram|^\/dev\/root)/ {next}
{print $2}' /proc/mounts
}