diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | examples/E50-initscripts-2.86.ds1-7.workaround.sh | 22 | ||||
-rw-r--r-- | examples/E50-libc2.3.2.ds1-11-workaround | 13 | ||||
-rw-r--r-- | examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh | 15 |
4 files changed, 0 insertions, 52 deletions
@@ -146,8 +146,6 @@ EXAMPLE_REBUILD_SCRIPTS += \ ALLDIRS += EXAMPLE_WORKAROUND EXAMPLE_WORKAROUNDDIR := $(EXAMPLEDIR)/workaround EXAMPLE_WORKAROUND_SCRIPTS += \ - examples/E50-initscripts-2.86.ds1-7.workaround.sh \ - examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh \ $(NULL) ALLDIRS += PKGDATA diff --git a/examples/E50-initscripts-2.86.ds1-7.workaround.sh b/examples/E50-initscripts-2.86.ds1-7.workaround.sh deleted file mode 100644 index ec1197d..0000000 --- a/examples/E50-initscripts-2.86.ds1-7.workaround.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# example file to be used with --hookdir -# -# work around initscripts postinst which mounts /sys etc. -# Bug: #344089 - -set +e - -umount /sys -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) - -exit 0 diff --git a/examples/E50-libc2.3.2.ds1-11-workaround b/examples/E50-libc2.3.2.ds1-11-workaround deleted file mode 100644 index 4e4c6e9..0000000 --- a/examples/E50-libc2.3.2.ds1-11-workaround +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# example file to be used with --hookdir -# -# work around libc6 postinst which mounts /sys etc. -# Bug#230008 - -set +e -umount /sys -umount /proc/bus/usb -umount /dev/shm - -exit 0 - diff --git a/examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh b/examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh deleted file mode 100644 index e2e4b94..0000000 --- a/examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# example file to be used with --hookdir -# -# work around initscripts postinst which mounts /sys with cdebootstrap. -# Bug: #350262 - -set +e - -umount /sys -umount /proc/bus/usb -umount /dev/shm -umount /proc -umount /dev/pts - -exit 0; |