On Feisty Fawn I'm using upstart - <a href="http://upstart.ubuntu.com/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://upstart.ubuntu.com/</a>
- to start my code without any problem with R11B5. Never tried tried
the CEAN version, but either official or locally complied erlangs are
fine in this way.
<br><br>Here is a simple version, just add add a similar text file with 644 privileges to your /etc/event.d folder like this:<br><br>start on my-service<br><br>start on runlevel 2<br>start on runlevel 3<br><br>stop on runlevel 0
<br>stop on runlevel 1<br>stop on runlevel 4<br>stop on runlevel 5<br>stop on runlevel 6<br><br>script<br>        HOME=/usr/local/my-service<br>        export HOME<br>        cd $HOME<br>        /erlang/bin/erl -noshell -s main
<br>end script<br><br>To start it for test use sudo initctl emit
my-service or sudo initctl start xxx, where xxx is your scripts file
name from event.d folder.<br><br>I hope this helps, any comments are welcome!<br>Attila
<br><br>