diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:40:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:40:32 +0000 |
commit | 76faa357888fc7ac8697e12f151f70fd7227a978 (patch) | |
tree | 5cfd018ebeb537a499caa021a008c6e51cc22d73 /debian/bug-script | |
parent | Adding upstream version 1.20.13. (diff) | |
download | dpkg-debian.tar.xz dpkg-debian.zip |
Adding debian version 1.20.13.debian/1.20.13debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/bug-script | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/debian/bug-script b/debian/bug-script new file mode 100644 index 0000000..5e17070 --- /dev/null +++ b/debian/bug-script @@ -0,0 +1,9 @@ +#!/bin/sh + +for d in /bin /sbin /lib /lib32 /libo32 /libx32 /lib64; do + linkname="$(readlink $d)" + if [ "$linkname" = "usr$d" ] || [ "$linkname" = "/usr$d" ]; then + echo "System tainted due to merged-usr-via-aliased-dirs." >&3 + break + fi +done |