Este es el script del tutorial
Código: Seleccionar todo
#!/bin/sh
### BEGIN INIT INFO v2
# 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 http://www.SysADMINsLife.com
######################################
# Customize values for your needs: "User"; "DIR"
USER="server_admin"
DIR="/usr/local/teamspeak/teamspeak3-server_linux_x86"
###### Teamspeak 3 server start/stop script ######
case "$1" in
start)
su $USER -c "/usr/bin/exagear -- ${DIR}/ts3server_startscript.sh start"
;;
stop)
su $USER -c "/usr/bin/exagear -- ${DIR}/ts3server_startscript.sh stop"
;;
restart)
su $USER -c "/usr/bin/exagear -- ${DIR}/ts3server_startscript.sh restart"
;;
status)
su $USER -c "/usr/bin/exagear -- ${DIR}/ts3server_startscript.sh status"
;;
*)
echo "Usage: {start|stop|restart|status}" >&2
exit 1
;;
esac
exit 0
Código: Seleccionar todo
sudo chmod 755 /etc/init.d/teamspeak3
Código: Seleccionar todo
sudo update-rc.d teamspeak3 defaults