mirror of
https://github.com/proot-me/proot.git
synced 2024-11-23 18:16:18 +00:00
11 lines
258 B
Bash
11 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
|
|
|