X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=usr_sbin%2Fgrml-chroot;h=b3d118487a399f0cc277229aed2fe91ae62460a7;hb=b0c3e5ff760f99d6ff7721852bc1a0d73c5ea201;hp=098592494dd42d2ec9e8d2b51a0e7e0ce45699bc;hpb=3bfbb79eef6cca9c40a63a8ea0ab86b421b72eee;p=grml-scripts.git diff --git a/usr_sbin/grml-chroot b/usr_sbin/grml-chroot index 0985924..b3d1184 100755 --- a/usr_sbin/grml-chroot +++ b/usr_sbin/grml-chroot @@ -9,7 +9,6 @@ PROG_NAME_=$(basename $0) DEST_="" MOUNTED_="" # all mounted destinations -COMMAND_="" # command to start in chroot function die @@ -79,8 +78,7 @@ if (( $# < 1 )); then die "Wrong number of arguments." fi -DEST_="$1" -COMMAND_="${2}" +DEST_="$1"; shift if [ ! -d "$DEST_" ]; then die "Target chroot does not exist: $DEST_" @@ -90,6 +88,13 @@ fi mountit "proc" "proc" mountit "sysfs" "sys" mountit "/dev" "dev" "--bind" -chroot "$DEST_" $COMMAND_ +if (( $# < 1 )); then + chroot "$DEST_" + RC=$? +else + chroot "$DEST_" "$@" + RC=$? +fi umount_all +exit $RC