diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/E50-initscripts-2.86.ds1-7.workaround.sh | 16 | ||||
-rw-r--r-- | examples/E50-libc2.3.2.ds1-11-workaround | 2 |
2 files changed, 18 insertions, 0 deletions
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 |