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