46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
#!/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
|
|
}
|