From 55a736e7b9f2ade9e6e97335fad6f47affff647b Mon Sep 17 00:00:00 2001
From: dancer <dancer>
Date: Wed, 21 Dec 2005 11:06:05 +0000
Subject: update workaround for libc to work around bugs in initscripts.

---
 examples/E50-initscripts-2.86.ds1-7.workaround.sh | 16 ++++++++++++++++
 examples/E50-libc2.3.2.ds1-11-workaround          |  2 ++
 2 files changed, 18 insertions(+)
 create mode 100644 examples/E50-initscripts-2.86.ds1-7.workaround.sh

(limited to 'examples')

diff --git a/examples/E50-initscripts-2.86.ds1-7.workaround.sh b/examples/E50-initscripts-2.86.ds1-7.workaround.sh
new file mode 100644
index 0000000..195ecf3
--- /dev/null
+++ b/examples/E50-initscripts-2.86.ds1-7.workaround.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+# work around initscripts postinst which mounts /sys etc.
+# Bug: #344089
+
+set +e
+
+umount /sys
+umount /run
+umount /proc/bus/usb
+umount /dev/shm
+
+# inetd seems to be dually started after upgrade, kill it.
+# Bug: #262627
+kill -9 $(cat /var/run/inetd.pid)
+
+exit 0
diff --git a/examples/E50-libc2.3.2.ds1-11-workaround b/examples/E50-libc2.3.2.ds1-11-workaround
index 350e79a..ff4d9f8 100644
--- a/examples/E50-libc2.3.2.ds1-11-workaround
+++ b/examples/E50-libc2.3.2.ds1-11-workaround
@@ -1,5 +1,7 @@
 #!/bin/sh
 # work around libc6 postinst which mounts /sys etc.
+# Bug#230008
+
 set +e
 umount /sys
 umount /proc/bus/usb
-- 
cgit v1.2.3