Üdv!
Nos, ahogy VPS-em van, így megkellett írnom 1 restartert a szerverekhez!
Forrás:
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
int main( )
{
while( true )
// if( true )
{
FILE *ls = popen( \"pidof samp03svr\", \"r\" );
if( !ls ){ return 1; }
char buf[ 4 ] = \" \";
fgets( buf, sizeof( buf ), ls );
if( strlen( buf ) < 2 )
{
//printf( \"Nem megy a szerver!\" );
system( \"cd /ahovaraktadaszervert && ./samp03svr\" );
}
pclose( ls );
usleep( 1000 );
}
return 1;
}
Jah és nohup-al futtassátok, ha lefordítjátok, szóval így: nohup ./program( vagy ahogy elmentetted ) &
EDIT: Aki nem tudja hogy kell lefordítani, az letölheti innen:
http://95.140.33.188/program