diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2011-12-24 17:09:14 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@netfort.gr.jp> | 2011-12-24 17:14:28 +0900 |
commit | 117da7d7f23a1345d305c1f51922bab446f2144e (patch) | |
tree | 82de0790dc1a63544d7126c222ad10391f219505 | |
parent | cab0795a1416c8ead4f950aad0b353f5da610cbe (diff) | |
download | pbuilder-117da7d7f23a1345d305c1f51922bab446f2144e.tar pbuilder-117da7d7f23a1345d305c1f51922bab446f2144e.tar.gz |
Remove obsolete example files which were used in regression testsuite for workarounds. (closes: #633055)
-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; |