Thursday, January 24, 2008

init.d config

Instead of chkconfig you use update-rc.d

For instance, I don't think the dictionary server is going to get heavily used, so to turn it off by default. To do this I run
update-rc.d -f dictd remove
update-rc.d dictd stop 2 3 4 5 .

The first removes all links, and the second puts only stop links in. The second is not strictly necessary.

No comments: