No Debian e no Ubuntu você pode executar /etc/init.d
scripts diretamente, como costumava ser também no Red Hat / Centos, ou use invoke-rc.d
ou service
. Eu acho que o material upstart
ainda está evoluindo, então isso pode mudar.
# /etc/init.d/httpd reload
# /usr/bin/service httpd reload
# /usr/sbin/invoke-rc.d httpd reload
update-rc.d
é a ferramenta correspondente a chkconfig
.
# /usr/sbin/update-rc.d httpd start 20 2 3 4 5 . 80 0 1 6 .
Mas insserv
está se tornando a maneira padrão de fazer isso:
# /sbin/insserv httpd,start=2,3,4,5 # 0,1,6 will be automatically set to off