2006-01-02 Miklos Szeredi <miklos@szeredi.hu>
- * Fix mount.fuse so that it ignores the 'user' option.
- Report and solution from Mattd.
+ * mount.fuse: the 'user' option should be ignored. Report and
+ solution from Mattd.
+
+ * mount.fuse: export PATH in the right place. Report and patch
+ from Hannes Schweizer
2005-12-16 Miklos Szeredi <miklos@szeredi.hu>
FSTYPE=${1%%\#*} # for now i have to be same as FUSE mount binary
# should be configurable
+export PATH
FSBIN=`which ${FSTYPE} 2>/dev/null` \
|| die "Can not find FUSE mount binary for FS ${FSTYPE}" 1
OPTIONS=`echo $@ | sed 's/,user//'`
-export PATH
${FSTYPE} ${MOUNTPATH} ${MOUNTPOINT} ${OPTIONS}
-
-
-