commit: 3c99e1482421257ddab0fc5cca45fb5ae7819567
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 24 13:41:19 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Dec 24 13:41:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c99e148
net-fs/ksmbd-tools/files: remove unused files
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-fs/ksmbd-tools/files/confd | 5 -----
net-fs/ksmbd-tools/files/initd | 32 --------------------------------
2 files changed, 37 deletions(-)
diff --git a/net-fs/ksmbd-tools/files/confd b/net-fs/ksmbd-tools/files/confd
deleted file mode 100644
index 81248468d530..000000000000
--- a/net-fs/ksmbd-tools/files/confd
+++ /dev/null
@@ -1,5 +0,0 @@
-# /etc/conf.d/ksmbd: config file for /etc/init.d/ksmbd
-#
-
-# Full path to config file. /etc/ksmbd/smb.conf is default if not set.
-#KSMBD_CONF="/etc/ksmbd/smb.conf"
diff --git a/net-fs/ksmbd-tools/files/initd b/net-fs/ksmbd-tools/files/initd
deleted file mode 100644
index f65770ed44c6..000000000000
--- a/net-fs/ksmbd-tools/files/initd
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-KSMBD_CONF="${KSMBD_CONF:-/etc/ksmbd/smb.conf}"
-
-depend() {
- need localmount
- use net
-}
-
-description="ksmbd userspace daemon"
-
-command="/sbin/ksmbd.mountd"
-command_control="/sbin/ksmbd.control"
-command_args="-s"
-
-required_files="${KSMBD_CONF}"
-
-start_pre() {
- /sbin/modprobe ksmbd || return 1
-}
-
-stop() {
- ebegin "Stopping ${RC_SVCNAME}"
- "${command_control}" -s
- eend $?
-}
-
-stop_post() {
- /sbin/modprobe -r -q ksmbd || return 0
-}