From 32441b10eaf9c5e6f7314af040cd557256b1d2da Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 16 Jul 2010 14:24:53 +0000 Subject: main/fuse: moved from testing --- testing/fuse/fuse.initd | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 testing/fuse/fuse.initd (limited to 'testing/fuse/fuse.initd') diff --git a/testing/fuse/fuse.initd b/testing/fuse/fuse.initd deleted file mode 100644 index 30b512e8dc..0000000000 --- a/testing/fuse/fuse.initd +++ /dev/null @@ -1,35 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -MOUNTPOINT=/sys/fs/fuse/connections - -depend() { - need localmount -} - -start() { - - ebegin "Starting fuse" - if ! grep -qw fuse /proc/filesystems; then - modprobe fuse >/dev/null 2>&1 || eerror $? "Error loading fuse module" - fi - if grep -qw fusectl /proc/filesystems && \ - ! grep -qw $MOUNTPOINT /proc/mounts; then - mount -t fusectl none $MOUNTPOINT >/dev/null 2>&1 || \ - eerror $? "Error mounting control filesystem" - fi - eend ${?} - -} - -stop() { - - ebegin "Stopping fuse" - if grep -qw $MOUNTPOINT /proc/mounts; then - umount $MOUNTPOINT >/dev/null 2>&1 || \ - eerror $? "Error unmounting control filesystem" - fi - eend ${?} - -} -- cgit v1.2.3