11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/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
|