From 0bbd68b7667067039536f8e5eed9a49b154840fc Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 16 Jun 2017 09:56:36 +0200 Subject: [PATCH] Revert "grml-chroot: mount /dev/pts as devpts inside chroot" This reverts commit f29c425ad79cbe31fca61397cbd3d97347f32cd7. This is causing troubles under certain conditions which leave the system in an unfixable state, so we need a different approach. See grml/grml#53 --- usr_sbin/grml-chroot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr_sbin/grml-chroot b/usr_sbin/grml-chroot index 17f3d3c..e9c1ae3 100755 --- a/usr_sbin/grml-chroot +++ b/usr_sbin/grml-chroot @@ -45,8 +45,8 @@ function mountit local all_options_="" - if [[ $options_ == "--rbind" ]]; then - all_options_="--rbind $type_" + if [[ $options_ == "--bind" ]]; then + all_options_="--bind $type_" else all_options_="-t $type_ none" fi @@ -56,7 +56,7 @@ function mountit function umount_all { for i in $MOUNTED_; do - umount --recursive "${DEST_}/$i" + umount "${DEST_}/$i" done } @@ -87,7 +87,7 @@ fi mountit "proc" "proc" mountit "sysfs" "sys" -mountit "/dev" "dev" "--rbind" +mountit "/dev" "dev" "--bind" WROTE_DEBIAN_CHROOT="" if [ ! -f "$DEST_"/etc/debian_chroot ]; then -- 2.1.4