Merge "Revert "Move dhcp_lease_duration into DHCP agent config options list""

This commit is contained in:
Jenkins 2015-11-17 05:29:34 +00:00 committed by Gerrit Code Review
commit ddd13b25e7
4 changed files with 8 additions and 7 deletions

View File

@ -95,9 +95,6 @@
# If the timeout expires, ovs commands will fail with ALARMCLOCK error.
# ovs_vsctl_timeout = 10
# DHCP lease duration (in seconds). Use -1 for infinite lease times.
# dhcp_lease_duration = 86400
[AGENT]
# Log agent heartbeats from this DHCP agent
# log_agent_heartbeats = False

View File

@ -110,6 +110,10 @@
# Maximum amount of retries to generate a unique MAC address
# mac_generation_retries = 16
# DHCP Lease duration (in seconds). Use -1 to
# tell dnsmasq to use infinite lease times.
# dhcp_lease_duration = 86400
# Domain to use for building the hostnames
# dns_domain = openstacklocal

View File

@ -45,10 +45,6 @@ DHCP_OPTS = [
'neutron.conf as dns_domain. It will removed from here '
'in a future release'),
deprecated_for_removal=True),
cfg.IntOpt('dhcp_lease_duration', default=86400,
deprecated_name='dhcp_lease_time',
help=_('DHCP lease duration (in seconds). Use -1 for infinite '
'lease times.')),
]
DNSMASQ_OPTS = [

View File

@ -83,6 +83,10 @@ core_opts = [
cfg.BoolOpt('ipv6_pd_enabled', default=False,
help=_("Enables IPv6 Prefix Delegation for automatic subnet "
"CIDR allocation")),
cfg.IntOpt('dhcp_lease_duration', default=86400,
deprecated_name='dhcp_lease_time',
help=_("DHCP lease duration (in seconds). Use -1 to tell "
"dnsmasq to use infinite lease times.")),
cfg.StrOpt('dns_domain',
default='openstacklocal',
help=_('Domain to use for building the hostnames')),