Re: [openstack-dev] [Neutron] DHCP configuration

2015-08-31 Thread Germy Lure
+1 common.config should be global and general while agent.config should be local and related to the special back-end. Maybe, we can add different prefix to the same option. Germy On Mon, Aug 31, 2015 at 11:13 PM, Kevin Benton wrote: > neutron.common.config should have

[openstack-dev] [Neutron] DHCP configuration

2015-08-31 Thread Gal Sagie
Hello all, I went over the code and noticed that we have default DHCP configuration both in neutron/common/config.py (dhcp_lease_duration , dns_domain and dhcp_agent_notification) But also we have it in neutron/agent/dhcp/config.py (DHCP_AGENT_OPTS, DHCP_OPTS) I think we should consider

Re: [openstack-dev] [Neutron] DHCP configuration

2015-08-31 Thread Kevin Benton
neutron.common.config should have general DHCP options that aren't specific to the reference DHCP agent. neutron.agent.dhcp.config should have all of the stuff specific to our agent and dnsmasq. On Mon, Aug 31, 2015 at 7:54 AM, Gal Sagie wrote: > Hello all, > > I went over