Você também deve usar o comando update-rc.d
. Existe a opção remove
para removê-lo da sequência de inicialização. O script permanecerá no diretório init.d
e você ainda poderá iniciá-los e pará-los com o comando service
.
Contexto
I made a service in init.d to be launched at boot (let's call it the primary service). And I updated
update-rc.d primaryservice defaults
This service calls 2 scripts (2 different task domains). I decided to make 2 sub-services (with start/stop) and to call them from the primary service:
#!/bin/sh -e
...
case
start)
service start subone
service start subtwo
;; ...etc...
esac
Pergunta
como não chamar os dois sub-serviços no lançamento? , mas ainda é possível usar service subservice-one start
por exemplo,
Tags boot services init.d linux linux-mint