aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--debian/changelog3
-rw-r--r--examples/E50-initscripts-2.86.ds1-7.workaround.sh4
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 58c5beb..ba38f1f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2006-10-24 Junichi Uekawa <dancer@debian.org>
+ * examples/E50-initscripts-2.86.ds1-7.workaround.sh: workaround
+ postinst which mounts /lib/init/rw
+
* Documentation/pbuilder-doc.xml: remove the note saying that
pbuilder-user-mode-linux is not available.
diff --git a/debian/changelog b/debian/changelog
index b0aa796..f893209 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,8 +5,9 @@ pbuilder (0.160) UNRELEASED; urgency=low
* Bug fix: "pbuilder-doc: inaccurcies in `Chapter 3. Using
User-mode-linux with pbuilder'?", thanks to shaulka@012.net.il
(Closes: #394857).
+ * Add workaround for /lib/init/rw (Closes: #392136).
- -- Junichi Uekawa <dancer@debian.org> Tue, 24 Oct 2006 07:49:23 +0900
+ -- Junichi Uekawa <dancer@debian.org> Tue, 24 Oct 2006 07:53:40 +0900
pbuilder (0.159) unstable; urgency=low
diff --git a/examples/E50-initscripts-2.86.ds1-7.workaround.sh b/examples/E50-initscripts-2.86.ds1-7.workaround.sh
index c1bca7a..ec1197d 100644
--- a/examples/E50-initscripts-2.86.ds1-7.workaround.sh
+++ b/examples/E50-initscripts-2.86.ds1-7.workaround.sh
@@ -11,6 +11,10 @@ umount /run
umount /proc/bus/usb
umount /dev/shm
+# work around initscripts postinst which mount /lib/init/rw
+# Bug: #392136, #390126
+umount /lib/init/rw
+
# inetd seems to be dually started after upgrade, kill it.
# Bug: #262627
kill -9 $(cat /var/run/inetd.pid)