I have created a symlink to a start/stop/etc. wrapper bash script in /etc/rc.d, added it to DAEMONS=() in rc.conf, but the process it points to isn’t starting on boot, and isn’t showing up in the output of $ rc.d list. Googling around, I have seen mention of update-rc.d, but it seems that command is not available in Arch Linux. What is the right way of adding a system-wide daemon (i.e., without using rc.local) that can be used the same way as the defaults?
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
|
|
|||
|
What does update-rc.d to do with Arch ? that's for debian based distros. A sample script, put it in /etc/rc.d/XX and make it executable, and edit /etc/rc.conf, push the name of the service into DAEMONS array
If you're not seeing the daemon in list, you've probably missed the |
|||
|
|
rc.multitakes care ofDAEMONS. – sr_ Jul 17 '12 at 6:29