Skip to content

Commit

Permalink
Merge "Edits for nova.conf.sample"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Sep 19, 2013
2 parents ded3bd1 + 344d870 commit 50482be
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions etc/nova/nova.conf.sample
Expand Up @@ -458,8 +458,8 @@
# Options defined in nova.api.openstack.compute.contrib.os_tenant_networks
#

# Enables or disables quotaing of tenant networks (boolean
# value)
# Enables or disables quota checking for tenant networks
# (boolean value)
#enable_network_quota=false

# Control for checking for default networks (string value)
Expand Down Expand Up @@ -1125,11 +1125,11 @@
# the port for the metadata api port (integer value)
#metadata_port=8775

# Regular expression to match iptables rule that shouldalways
# Regular expression to match iptables rule that should always
# be on the top. (string value)
#iptables_top_regex=

# Regular expression to match iptables rule that shouldalways
# Regular expression to match iptables rule that should always
# be on the bottom. (string value)
#iptables_bottom_regex=

Expand Down
3 changes: 2 additions & 1 deletion nova/api/openstack/compute/contrib/os_tenant_networks.py
Expand Up @@ -36,7 +36,8 @@
os_network_opts = [
cfg.BoolOpt("enable_network_quota",
default=False,
help="Enables or disables quotaing of tenant networks"),
help=('Enables or disables quota checking for tenant '
'networks')),
cfg.StrOpt('use_neutron_default_nets',
default="False",
deprecated_name='use_quantum_default_nets',
Expand Down
4 changes: 2 additions & 2 deletions nova/network/linux_net.py
Expand Up @@ -112,11 +112,11 @@
help='the port for the metadata api port'),
cfg.StrOpt('iptables_top_regex',
default='',
help='Regular expression to match iptables rule that should'
help='Regular expression to match iptables rule that should '
'always be on the top.'),
cfg.StrOpt('iptables_bottom_regex',
default='',
help='Regular expression to match iptables rule that should'
help='Regular expression to match iptables rule that should '
'always be on the bottom.'),
cfg.StrOpt('iptables_drop_action',
default='DROP',
Expand Down

0 comments on commit 50482be

Please sign in to comment.