View Single Post
Posts: 46 | Thanked: 5 times | Joined on Sep 2009
#92
@Qole: you have a bug with easy-deb-chroot (0.9.35-1fremantle1)

When installing this, dpkg complains about an error in the post-installation - basically your /var/lib/dpkg/info/easy-deb-chroot.postinst script has an error.\

The fix: edit /var/lib/dpkg/info/easy-deb-chroot.postinst and comment out the "else" conditional line

Code:
CHROOT=/.debian
TSTFILE=/usr/bin/hilda
if [ ! -d "$CHROOT" ] ; then
    mkdir /.debian
else
#    if [ -f "$CHROOT$TSTFILE" ] || [ ! "x`/sbin/debian echo hello | grep hello`" = "x" ] ; then
#       closechroot
#       export YESCHROOT='yes'
#    fi
fi
 

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