mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
7 lines
215 B
Bash
7 lines
215 B
Bash
if [ ! -x ${ROOTFS}/bin/readlink ] || [ -z `which realpath` ] || [ -z `which grep` ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
RESULT=$(realpath ${ROOTFS})
|
|
|
|
${PROOT} -b /proc -r ${ROOTFS} readlink /proc/self/root | grep ^${RESULT}$
|