Active Topics

 


Reply
Thread Tools
Posts: 318 | Thanked: 735 times | Joined on Oct 2009
#1
Hi,

I have a little troubles using autostart to let my application starts automatically.
If I read correctly the autostart documentation the only thing I need to do is to write a script in /etc/event.d/ directory, and I've doing it so :

Code:
respawn
console none

start on started xsession
stop on stopping shutdown

exec /usr/bin/myapp
after that I rebooted, but the app still doesn't run automatically. By executing initctl list, I see my script in that list so I try initctl start myscript
there is the output:

Code:
myscript (start) waiting
myscript (start) starting
myscript (start) pre-start
myscript (start) spawned, process 2194
myscript (start) post-start, (main) process 2194
myscript (start) running, process 2194
The output seems quite good but, by running a ps I didn't see such a PID and my app is not running.
Any hint will be appreciated
 

The Following User Says Thank You to b0unc3 For This Useful Post:
VDVsx's Avatar
Posts: 1,070 | Thanked: 1,604 times | Joined on Sep 2008 @ Helsinki
#2
Try this:

Code:
respawn
console none

start on started xsession
stop on stopping shutdown

script
  exec /usr/bin/myapp
end script
Note that can be a problem in your app, if it is crashing upstart might kick it and ignore the respawn flag.
__________________
Valério Valério
www.valeriovalerio.org
 

The Following User Says Thank You to VDVsx For This Useful Post:
Posts: 318 | Thanked: 735 times | Joined on Oct 2009
#3
Originally Posted by VDVsx View Post
Try this:

Code:
respawn
console none

start on started xsession
stop on stopping shutdown

script
  exec /usr/bin/myapp
end script
Note that can be a problem in your app, if it is crashing upstart might kick it and ignore the respawn flag.
Yes, there was a problem in my app that segfaults somewhere (especially when called by upstart)
Once I fixed it , upstart started working correctly.
 

The Following User Says Thank You to b0unc3 For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 07:05.