mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
10 lines
258 B
Bash
10 lines
258 B
Bash
if [ ! -x ${ROOTFS}/bin/fork-wait ] || [ -z `which strace` ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
${PROOT} strace ${ROOTFS}/bin/fork-wait
|
|
${PROOT} strace ${ROOTFS}/bin/fork-wait 2
|
|
|
|
${PROOT} strace -f ${ROOTFS}/bin/fork-wait
|
|
${PROOT} strace -f ${ROOTFS}/bin/fork-wait 2
|
|
|