Hi Jan,

Please CC me in your replies, the BTS doesn't automatically forward
them to the submitter.

Regarding your mail written in 7 Nov:

> We need fusermount in our init script to unmount the fs. Is there
> another way so that we can drop the dependency?

Yes, on GNU/kFreeBSD FUSE filesystems are more like normal
filesystems. They're available only to root, and are unmounted using
"umount" command as usual.

I suggest something like:

+               if [ "$(uname)" = Linux ]; then
+                       fusermount -u /blah
+               elif [ "$(uname)" = GNU/kFreeBSD ]; then
+                       umount -u /blah
+               else
+                       echo "Port me" >&2
+                       exit 1
+               fi

Thanks!

-- 
Robert Millan



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to