Re: disable jenkins autostart on ubuntu

2015-07-07 Thread Kelvin Olson
On Tuesday, December 3, 2013 at 9:41:20 AM UTC-6, Mark Waite wrote: > > /etc/default/jenkins includes a RUN_STANDALONE value which defaults to > "true". If you set it to "false", then Jenkins will not start as a service. > While it's true that it won't start, I believe that re-configuration the

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread tomasz ducin
Thank you guys very much! It was, in fact, ubuntu-related issue instead of jenkins-related. cheers W dniu wtorek, 3 grudnia 2013 16:41:20 UTC+1 użytkownik Mark Waite napisał: > > /etc/default/jenkins includes a RUN_STANDALONE value which defaults to > "true". If you set it to "false", then Jen

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread Mark Waite
/etc/default/jenkins includes a RUN_STANDALONE value which defaults to "true". If you set it to "false", then Jenkins will not start as a service. Be sure you stop the service before marking it false (/etc/init.d/jenkins stop), otherwise the stop script will refuse to stop the service, because it

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread Richard Lavoie
Did you take a look in /etc/default/ ? That's usually where the service options are defined in ubuntu. On 2013-12-03, at 07:20, tomasz ducin wrote: > I've installed jenkins on my ubuntu 11.10 according to the official tutorial. > Anyway, I don't want jenkins to autoload on startup. I want to s

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread Mike Bayliss
update-rc.d jenkins disable On Tue, Dec 3, 2013 at 1:20 PM, tomasz ducin wrote: > I've installed jenkins on my ubuntu 11.10 according to the official > tutorial. > Anyway, I don't want jenkins to autoload on startup. I wa

disable jenkins autostart on ubuntu

2013-12-03 Thread tomasz ducin
I've installed jenkins on my ubuntu 11.10 according to the official tutorial. Anyway, I don't want jenkins to autoload on startup. I want to star it manually only when I want to. And I don't know how to do that. I've been se