diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:45:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:45:21 +0000 |
commit | b3e64bc4a36b1150b6e6de6ad7b966dfd98b1d4d (patch) | |
tree | fbba61f0870404ee20c06c4fcafcb01b74f478a9 /debian/bug-script | |
parent | Adding upstream version 1.19.8. (diff) | |
download | dpkg-b3e64bc4a36b1150b6e6de6ad7b966dfd98b1d4d.tar.xz dpkg-b3e64bc4a36b1150b6e6de6ad7b966dfd98b1d4d.zip |
Adding debian version 1.19.8.debian/1.19.8debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/bug-script')
-rw-r--r-- | debian/bug-script | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/bug-script b/debian/bug-script new file mode 100644 index 0000000..56d6548 --- /dev/null +++ b/debian/bug-script @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +for d in /bin /sbin /lib /lib32 /libo32 /libx32 /lib64; do + if [ "$(readlink $d)" = "usr$d" ]; then + echo "System tainted due to merged-usr-via-symlinks." >&3 + break + fi +done |