Lines Matching full:fuse
3 # Provides: fuse
9 # Short-Description: Start and stop fuse.
10 # Description: Load the fuse module and mount the fuse control
17 MOUNTPOINT=/sys/fs/fuse/connections
27 if ! grep -qw fuse /proc/filesystems; then
28 echo -n "Loading fuse module"
29 if ! modprobe fuse >/dev/null 2>&1; then
36 echo "Fuse filesystem already available."
40 echo -n "Mounting fuse control filesystem"
48 echo "Fuse control filesystem already available."
52 if ! grep -qw fuse /proc/filesystems; then
53 echo "Fuse filesystem not loaded."
57 echo -n "Unmounting fuse control filesystem"
64 echo "Fuse control filesystem not mounted."
66 if grep -qw "^fuse" /proc/modules; then
67 echo -n "Unloading fuse module"
68 if ! rmmod fuse >/dev/null 2>&1; then
74 echo "Fuse module not loaded."
78 echo -n "Checking fuse filesystem"
79 if ! grep -qw fuse /proc/filesystems; then