Salve a tutti,
Sono un ragazzo alle prime armi con i server di ts3 e quindi sicuramente mi vedrete molto spesso a domandare cose su questo forum
Adesso passo al problema, ho creato un server di ts3 con PuTTy basato su centos e vorrei mettere un'autorestart, ora ho provato con lo script init.d queste stringeMa non funziona ho anche aspettato 1 ora ma non si riavviava allora chiedevo come potevo aggiungere questo autorestart, grazie mille per la lettura e buon VoiceCodice:#!/bin/sh ### BEGIN INIT INFO # Provides: ts3 # Required-Start: $ALL # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Teamspeak3-server startscript # Description: # ### END INIT INFO USER="root" TS3='/root/teamspeak3-server_linux-x*86' STARTSCRIPT="$TS3/ts3server_startsc*ript.sh" cd $TS3 su $USER -c "$STARTSCRIPT start"