summaryrefslogtreecommitdiff
path: root/media-tv/jellyfin/files/jellyfin.init.d
diff options
context:
space:
mode:
authorGuillermo Ramos2022-11-12 11:35:56 +0100
committerGuillermo Ramos2023-01-16 23:53:48 +0100
commitc2e80b0be953312ea940c77cc8e577f7030414b0 (patch)
tree9827535c0caf6c6d096a3cd10d0cda2e46c37a8e /media-tv/jellyfin/files/jellyfin.init.d
parent2539577d8b68b760ac37cc0a4ff691c8119209bd (diff)
downloadgentoo-overlay-master.tar.gz
Remove old/useless ebuildsHEADmaster
Diffstat (limited to 'media-tv/jellyfin/files/jellyfin.init.d')
-rwxr-xr-xmedia-tv/jellyfin/files/jellyfin.init.d32
1 files changed, 0 insertions, 32 deletions
diff --git a/media-tv/jellyfin/files/jellyfin.init.d b/media-tv/jellyfin/files/jellyfin.init.d
deleted file mode 100755
index 7ce8f54..0000000
--- a/media-tv/jellyfin/files/jellyfin.init.d
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description="Jellyfin Media Server"
-
-user="${JELLYFIN_USER}:${JELLYFIN_USER}"
-
-start_stop_daemon_args="--user $user --wait 10"
-
-command="/usr/bin/jellyfin"
-command_args="--configdir $JELLYFIN_CONFIG_DIR
- --datadir $JELLYFIN_DATA_DIR
- --cachedir $JELLYFIN_CACHE_DIR
- --logdir $JELLYFIN_LOG_DIR
- $JELLYFIN_ARGS"
-
-command_background="true"
-
-pidfile="/run/jellyfin.pid"
-
-depend() {
- need net
- after bootmisc
-}
-
-start_pre() {
- checkpath --directory --owner $user $JELLYFIN_CONFIG_DIR
- checkpath --directory --owner $user $JELLYFIN_DATA_DIR
- checkpath --directory --owner $user $JELLYFIN_CACHE_DIR
- checkpath --directory --owner $user $JELLYFIN_LOG_DIR
-}