14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
|
#!/bin/bash
|
||
|
(
|
||
|
set -e
|
||
|
mount -o bind "/dev" "$1/dev"
|
||
|
mount -o bind "/dev/pts" "$1/dev/pts"
|
||
|
mount -t proc none "$1/proc"
|
||
|
chroot "$1" ${@:2}
|
||
|
)
|
||
|
if [ $? != 0 ]; then
|
||
|
wdvn-chroot-end "$1"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
wdvn-chroot-end "$1"
|