Se o software for feito para o Linux, deve haver apenas um local:
/etc/init.d/
Deve haver um script chamado tntnet
e este deve ser um script upstart (novo método) ou um script de inicialização (método antigo).
Apenas para provar, eu o instalei;)
% bl0ck_qu0te%pwd
/etc/init.d
ls tnt*
tntnet
e o arquivo em si:
#! /bin/sh ### BEGIN INIT INFO # Provides: tntnet.org # Required-Start: $local_fs $remote_fs $time $network # Required-Stop: $local_fs $remote_fs $time $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: modular, multithreaded web application server for C++ # Description: web server in which dynamic content can be written in # ecpp, where C++ code can be embedded in HTML layout. ### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/bin/tntnet NAME=tntnet DESC=tntnet test -x $DAEMON || exit 0
Para parar tntnet
do início automático, você pode fazer tntnet stop
da linha de comando ou remover o serviço. Isso deve funcionar:
update-rc.d tntnet disable