summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-01-13 21:11:43 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-02-10 00:03:05 +0100
commit6425d6798d348afb02466d08e6f58995388e2565 (patch)
treed0afc58d8b375ee733ecd6da9ca4abb21d3756ff /sys-fs
parentsys-apps/file: remove unused patches (diff)
downloadgentoo-6425d6798d348afb02466d08e6f58995388e2565.tar.gz
gentoo-6425d6798d348afb02466d08e6f58995388e2565.tar.bz2
gentoo-6425d6798d348afb02466d08e6f58995388e2565.zip
sys-fs/fuse-common: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/23781 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/fuse-common/files/fuse-fbsd.init23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys-fs/fuse-common/files/fuse-fbsd.init b/sys-fs/fuse-common/files/fuse-fbsd.init
deleted file mode 100644
index 27d90cc867f3..000000000000
--- a/sys-fs/fuse-common/files/fuse-fbsd.init
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need localmount
-}
-
-start() {
- ebegin "Starting fuse"
- if ! kldstat -q -m fuse; then
- kldload fuse >/dev/null 2>&1 || eerror $? "Error loading fuse module"
- fi
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping fuse"
- if kldstat -q -m fuse; then
- kldunload fuse >/dev/null 2>&1 || eerror $? "Error unloading fuse module"
- fi
- eend ${?}
-}