summaryrefslogtreecommitdiff
path: root/games-server/bedrock-server/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
commitd934827bf44b7cfcf6711964418148fa60877668 (patch)
tree0625f358789b5e015e49db139cc1dbc9be00428f /games-server/bedrock-server/files
parent2e34d110f164bf74d55fced27fe0000201b3eec5 (diff)
gentoo resync : 25.11.2020
Diffstat (limited to 'games-server/bedrock-server/files')
-rw-r--r--games-server/bedrock-server/files/bedrock-server.initd-r147
1 files changed, 0 insertions, 47 deletions
diff --git a/games-server/bedrock-server/files/bedrock-server.initd-r1 b/games-server/bedrock-server/files/bedrock-server.initd-r1
deleted file mode 100644
index 5f71b80edb21..000000000000
--- a/games-server/bedrock-server/files/bedrock-server.initd-r1
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-if [ "${SVCNAME}" = "bedrock-server" ]; then
- instance="main"
-else
- instance="${SVCNAME#*.}"
-fi
-
-bedrock_command="/opt/bin/bedrock-server"
-bedrock_path="/var/lib/bedrock-server"
-bedrock_path_data="/opt/bedrock-server"
-bedrock_path_instance="${bedrock_path}/${instance}"
-dtach_tmpfile="$(mktemp -u)"
-name="Minecraft Bedrock server (${instance})"
-pidfile="/run/bedrock-server.${instance}.pid"
-start_stop_daemon_args="--chdir ${bedrock_path_instance}"
-
-command="/usr/bin/dtach"
-command_background="true"
-command_args="-N ${dtach_tmpfile} ${bedrock_command}"
-command_group="bedrock"
-command_user="bedrock"
-
-depend() {
- use net
-}
-
-start_pre() {
- checkpath -d -o "${command_user}:${command_group}" -q "${bedrock_path}" "${bedrock_path_instance}"
-
- local bedrock_configs=( "permissions.json" "server.properties" "whitelist.json" )
- for bedrock_config in ${bedrock_configs[@]}; do
- if [ ! -f "${bedrock_path_instance}/${bedrock_config}" ]; then
- cp "${bedrock_path_data}/${bedrock_config}" "${bedrock_path_instance}"
- checkpath -f -o "${command_user}:${command_group}" -q "${bedrock_path_instance}/${bedrock_config}"
- fi
- done
-
- local bedrock_ressources=( "behavior_packs" "definitions" "resource_packs" "structures" )
- for bedrock_ressource in ${bedrock_ressources[@]}; do
- if [ ! -L "${bedrock_path_instance}/${bedrock_ressource}" ]; then
- ln -sf "${bedrock_path_data}/${bedrock_ressource}" "${bedrock_path_instance}"
- fi
- done
-}