Re: [openstack-dev] How to re-compile Devstack Code

2014-04-24 Thread Dean Troyer
On Thu, Apr 24, 2014 at 12:53 AM, Matthew Oliver wrote: > If you put OFFLINE=True in your localrc (or local.conf) file, then you > can: > ./unstack.sh; ./stack.sh > without the stack.sh attempting to recheck out the latest code. > If this works at all it is a side-effect of skipping a git clone a

Re: [openstack-dev] How to re-compile Devstack Code

2014-04-24 Thread Sandy Walsh
Also, I find setting this in my localrc/local.conf helps debugging: # get an actual log file vs. screen scrollback LOGFILE=/opt/stack/logs/stack.sh.log # gimme all the info VERBOSE=True # don't pull from git every time I run stack.sh RECLONE=False # make the logs readable LOG_COLOR=False

Re: [openstack-dev] How to re-compile Devstack Code

2014-04-24 Thread Sean Dague
On 04/24/2014 02:06 AM, Steve Martinelli wrote: > Modify the files, save the changes, and restart the service. > > (I usually use `screen -r` switch to the service, ctrl+c, then re-run > the command that launches the service.) +1 That's the flow that devstack was written to support. -Se

Re: [openstack-dev] How to re-compile Devstack Code

2014-04-23 Thread Steve Martinelli
ent Mailing List, (not for usage questions)" > , > Date: 04/24/2014 01:55 AM > Subject: Re: [openstack-dev] How to re-compile Devstack Code > > If you put OFFLINE=True in your localrc (or local.conf) file, then you can: > ./unstack.sh; ./stack.sh > without the stack.sh

Re: [openstack-dev] How to re-compile Devstack Code

2014-04-23 Thread Matthew Oliver
If you put OFFLINE=True in your localrc (or local.conf) file, then you can: ./unstack.sh; ./stack.sh without the stack.sh attempting to recheck out the latest code. Matt On Apr 24, 2014 3:49 PM, "shiva m" wrote: > Hi, > > I have Devstack havana setup on Ubuntu 13.10. I am trying to modify some >

Re: [openstack-dev] How to re-compile Devstack Code

2014-04-23 Thread abhishek jain
Hi shiva You can reload the openstack services by following the below steps after making the desired changes.. i) Enter into the devstack directry i.e cd devstack ii) Execute rejoin-stackh.sh i.e ./rejoin-stack.sh iii) Press ctrl+a+shift+" iv) Select the appropriate service to restart Please le