Skip to content

Instantly share code, notes, and snippets.

@SysADMINsLife
Created November 5, 2013 14:24
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save SysADMINsLife/7319773 to your computer and use it in GitHub Desktop.
Save SysADMINsLife/7319773 to your computer and use it in GitHub Desktop.
Teamspeak 3 Server Debian Startup Script
#!/bin/sh
### BEGIN INIT INFO
# Provides: teamspeak3
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Teamspeak 3 Server
### END INIT INFO
# INIT Script by www.SysADMINsLife.com
######################################
# Customize values for your needs: "User"; "DIR"
USER="teamspeak3"
DIR="/usr/local/teamspeak3/teamspeak3-server_linux-amd64"
###### Teamspeak 3 server start/stop script ######
case "$1" in
start)
su $USER -c "${DIR}/ts3server_startscript.sh start"
;;
stop)
su $USER -c "${DIR}/ts3server_startscript.sh stop"
;;
restart)
su $USER -c "${DIR}/ts3server_startscript.sh restart"
;;
status)
su $USER -c "${DIR}/ts3server_startscript.sh status"
;;
*)
echo "Usage: {start|stop|restart|status}" >&2
exit 1
;;
esac
exit 0
@ace02000
Copy link

Danke!

@robinrm
Copy link

robinrm commented May 26, 2021

good job!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment