[Pkg-sysvinit-commits] r1945 - in sysvinit/trunk/debian: . src/initscripts/etc/init.d
Kel Modderman
kelmo-guest at alioth.debian.org
Tue Sep 21 12:57:11 UTC 2010
Author: kelmo-guest
Date: 2010-09-21 12:57:03 +0000 (Tue, 21 Sep 2010)
New Revision: 1945
Modified:
sysvinit/trunk/debian/changelog
sysvinit/trunk/debian/src/initscripts/etc/init.d/umountfs
Log:
Avoid umounting virtual filesystems (eg, cgroup) mounted under /sys/* as there is no good reason to do so. Thanks Michael Biebl for the patch. (Closes: #597338)
Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog 2010-09-21 12:42:27 UTC (rev 1944)
+++ sysvinit/trunk/debian/changelog 2010-09-21 12:57:03 UTC (rev 1945)
@@ -14,9 +14,12 @@
without fuzziness.
* Add debian/startpar/patches/08_kfreebsd_proc_error_debug.patch to
prevent frequent messages on Debian GNU/kFreeBSD from littering boot
- messages. (Closes: #590560)
+ messages. Thanks Petr Salinger for the patch. (Closes: #590560)
+ * Avoid umounting virtual filesystems (eg, cgroup) mounted under
+ /sys/* as there is no good reason to do so. Thanks Michael Biebl
+ for the patch. (Closes: #597338)
- -- Kel Modderman <kel at otaku42.de> Tue, 21 Sep 2010 22:20:59 +1000
+ -- Kel Modderman <kel at otaku42.de> Tue, 21 Sep 2010 22:54:56 +1000
sysvinit (2.88dsf-12) unstable; urgency=low
Modified: sysvinit/trunk/debian/src/initscripts/etc/init.d/umountfs
===================================================================
--- sysvinit/trunk/debian/src/initscripts/etc/init.d/umountfs 2010-09-21 12:42:27 UTC (rev 1944)
+++ sysvinit/trunk/debian/src/initscripts/etc/init.d/umountfs 2010-09-21 12:57:03 UTC (rev 1945)
@@ -27,7 +27,7 @@
do
echo "$PROTECTED_MOUNTS" | grep -qs "^$DEV $MTPT " && continue
case "$MTPT" in
- /|/proc|/dev|/.dev|/dev/pts|/dev/shm|/dev/.static/dev|/proc/*|/sys|/lib/init/rw)
+ /|/proc|/dev|/.dev|/dev/pts|/dev/shm|/dev/.static/dev|/proc/*|/sys|/sys/*|/lib/init/rw)
continue
;;
/var/run)
More information about the Pkg-sysvinit-commits
mailing list