mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
7 lines
149 B
Bash
7 lines
149 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -x ${ROOTFS}/bin/true -o ! -x ${ROOTFS}/bin/chroot ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
${PROOT} -0 -r ${ROOTFS} -w / /bin/chroot . /bin/true
|