mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-15 21:43:00 +02:00
git-svn-id: http://svn.ipfire.org/svn/ipfire/branches/2.1/trunk@1243 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
29 lines
591 B
Bash
29 lines
591 B
Bash
#!/bin/sh
|
|
########################################################################
|
|
# Begin $rc_base/init.d/teamspeak
|
|
#
|
|
# Description : Start/Stops the teamspeak server
|
|
#
|
|
# Authors : Michael Tremer
|
|
#
|
|
# Version : 01.00
|
|
#
|
|
# Notes :
|
|
#
|
|
########################################################################
|
|
|
|
. /etc/sysconfig/rc
|
|
. $rc_functions
|
|
|
|
case "$1" in
|
|
status)
|
|
statusproc /opt/teamspeak/server_linux
|
|
;;
|
|
*)
|
|
export LANG=en_US.utf8
|
|
cd /opt/teamspeak && sudo -u teamspeak ./teamspeak2-server_startscript $*
|
|
exit 0
|
|
;;
|
|
esac
|
|
# End $rc_base/init.d/teamspeak
|