View Single Post
Posts: 12 | Thanked: 12 times | Joined on Feb 2013 @ Estonia
#2884
I tested rzr-rootfs and I edited some lines in qchroot script:
Code:
# if the user supplies "none" for the image file,
# skip the qmount step. Thanks for reporting, Fabry!

if [ "$IMGFILE" != "none" ] ; then
  qmount $IMGFILE $CHROOT
  MOUNTSUCCESS=$?
else
  if [ -f "$CHROOT/var/lock/qmount-complete" ] ; then
    MOUNTSUCCESS=1
  else
    echo "$IMGFILE" > $CHROOT/var/lock/qmount-complete
    MOUNTSUCCESS=0
  fi
fi
It prevents multible mounting for /var/run/pulse , /var/run/dbus etc.
And it fixes closechroot issue. ( Nothing to do; chroot not mounted!)

Last edited by valdur55; 2013-02-17 at 18:35.
 

The Following User Says Thank You to valdur55 For This Useful Post: