diff -Nru /tmp/pvfOc46rHP/ltspfs-0.4.3/debian/changelog /tmp/yCltiA9OYe/ltspfs-0.4.3/debian/changelog --- /tmp/pvfOc46rHP/ltspfs-0.4.3/debian/changelog 2006-09-22 16:17:01.000000000 +0200 +++ /tmp/yCltiA9OYe/ltspfs-0.4.3/debian/changelog 2006-09-22 16:17:01.000000000 +0200 @@ -1,3 +1,10 @@ +ltspfs (0.4.3-0ubuntu2) edgy; urgency=low + + * Fixed testing conditions in postinst. + * closes: https://launchpad.net/distros/ubuntu/+source/ltspfs/+bug/61738 + + -- Scott Balneaves Mon, 18 Sep 2006 13:01:06 -0500 + ltspfs (0.4.3-0ubuntu1) edgy; urgency=low * Fixed variable check for static-devices in add_fstab_entry diff -Nru /tmp/pvfOc46rHP/ltspfs-0.4.3/debian/ltspfs.postinst /tmp/yCltiA9OYe/ltspfs-0.4.3/debian/ltspfs.postinst --- /tmp/pvfOc46rHP/ltspfs-0.4.3/debian/ltspfs.postinst 2006-09-22 16:17:01.000000000 +0200 +++ /tmp/yCltiA9OYe/ltspfs-0.4.3/debian/ltspfs.postinst 2006-09-22 16:17:01.000000000 +0200 @@ -19,14 +19,8 @@ case "$1" in configure) - grep fuse /etc/modules > /dev/null 2>&1 - if [ $? -eq 1 ]; then - echo "fuse" >> /etc/modules - fi - lsmod | grep fuse > /dev/null 2>&1 - if [ $? -eq 1 ]; then - modprobe fuse - fi + grep fuse /etc/modules > /dev/null 2>&1 || echo "fuse" >> /etc/modules + lsmod | grep fuse > /dev/null 2>&1 || modprobe fuse chmod 4755 /usr/bin/lbmount ;;