[media-sound/teamspeak-server] rename as in tree

This commit is contained in:
2018-06-24 19:50:52 +02:00
parent 5b589b0916
commit 0638379048
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
command="/opt/bin/ts3server"
command_background="true"
group="teamspeak"
inifile="/etc/teamspeak3-server/ts3server.ini"
name="TeamSpeak Server"
pidfile="/run/teamspeak3-server/server.pid"
user="teamspeak"
depend() {
need net
use mysql
}
start_pre() {
# ensure, that the TS3-server finds all custom supplied shared objects on startup.
LD_LIBRARY_PATH="/opt/teamspeak3-server:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH
# temporay fix for EPERM bug (we still leave it here to make sure it is *really* not there)
rm -f /dev/shm/7gbhujb54g8z9hu43jre8
checkpath -d --owner ${user}:${group} --mode 0700 /run/teamspeak3-server
}
start() {
ebegin "Starting ${name}"
start-stop-daemon --start --quiet --background --env "TS3SERVER_LICENSE=accept" \
--pidfile "${pidfile}" --make-pidfile \
--user "${user}" --group "${group}" --chdir "/opt/teamspeak3-server" \
--exec "${command}" -- \
inifile="${inifile}"
eend $?
}
restart() {
stop
sleep 3
start
}

View File

@@ -0,0 +1,16 @@
[Unit]
Description=TeamSpeak3 Server
After=network-online.target
[Service]
Type=simple
User=teamspeak
Group=teamspeak
WorkingDirectory=/opt/teamspeak3-server
Environment="LD_LIBRARY_PATH=/opt/teamspeak3-server"
Environment="TS3SERVER_LICENSE=accept"
ExecStartPre=/bin/rm -f /dev/shm/7gbhujb54g8z9hu43jre8
ExecStart=/opt/bin/ts3server inifile=/etc/teamspeak3-server/ts3server.ini
[Install]
WantedBy=multi-user.target

View File

@@ -0,0 +1,4 @@
# systemd tmpfile settings for teamspeak3-server
# See tmpfiles.d(5) for details
d /var/run/teamspeak3 0755 teamspeak teamspeak -

View File

@@ -0,0 +1,7 @@
[config]
host=localhost
port=3306
username=teamspeak
password=teamspeak
database=teamspeak
socket=

View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Sets BASEDIR for teamspeak3-server
BASEDIR="/opt/teamspeak3-server"
# Work around DT_RPATH (.) security issue by chdir'ing into expected $LD_LIBRARY_PATH
export LD_LIBRARY_PATH="${BASEDIR}${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}"
# Launch teamspeak3-server
cd "${BASEDIR}" && exec "${BASEDIR}/ts3server" $*

View File

@@ -0,0 +1,23 @@
machine_id=
default_voice_port=9987
voice_ip=
licensepath=/opt/teamspeak3-server/
filetransfer_port=30033
filetransfer_ip=
query_port=10011
query_ip=0.0.0.0, ::
query_ip_whitelist=query_ip_whitelist.txt
query_ip_blacklist=query_ip_blacklist.txt
dbplugin=ts3db_sqlite3
dbpluginparameter=
dbsqlpath=/opt/teamspeak3-server/sql/
dbsqlcreatepath=create_sqlite/
dbconnections=10
logpath=/var/log/teamspeak3-server/
logquerycommands=0
dbclientkeepdays=30
logappend=0
query_skipbruteforcecheck=0
query_buffer_mb=20
http_proxy=
license_accepted=1

View File

@@ -0,0 +1,23 @@
machine_id=
default_voice_port=9987
voice_ip=
licensepath=/opt/teamspeak3-server/
filetransfer_port=30033
filetransfer_ip=
query_port=10011
query_ip=0.0.0.0, ::
query_ip_whitelist=query_ip_whitelist.txt
query_ip_blacklist=query_ip_blacklist.txt
dbplugin=ts3db_mariadb
dbpluginparameter=ts3db_mariadb.ini
dbsqlpath=/opt/teamspeak3-server/sql/
dbsqlcreatepath=create_mariadb/
dbconnections=10
logpath=/var/log/teamspeak3-server/
logquerycommands=0
dbclientkeepdays=30
logappend=0
query_skipbruteforcecheck=0
query_buffer_mb=20
http_proxy=
license_accepted=1