diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-16 14:24:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-16 14:24:53 +0000 |
commit | 32441b10eaf9c5e6f7314af040cd557256b1d2da (patch) | |
tree | 8fadf0197f6f0f535ffce0cbbb0fdeabce4d6e91 /testing/fuse/fuse.initd | |
parent | 35bae381d202f379dbe4fc6c9b187884764fdcfd (diff) | |
download | aports-2.0.0_beta3.tar.bz2 aports-2.0.0_beta3.tar.xz |
main/fuse: moved from testingv2.0.0_beta3
Diffstat (limited to 'testing/fuse/fuse.initd')
-rw-r--r-- | testing/fuse/fuse.initd | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/testing/fuse/fuse.initd b/testing/fuse/fuse.initd deleted file mode 100644 index 30b512e8d..000000000 --- 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 ${?} - -} |