Skip to content

Commit

Permalink
Undeprecate enable_security_group parameter
Browse files Browse the repository at this point in the history
Introduced by commit f87e7d964c19cc2be33226df66f0c823af993d49
in Neutron 2014.1.rc1, this config is far from deprecated.

Restore it with proper default value.

Change-Id: If74658dbdb0fc1961a664df7484ebc2d1b0a118b
  • Loading branch information
mgagne committed Jul 9, 2014
1 parent 87d3812 commit 5b3abcf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions manifests/plugins/ml2.pp
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@
# Min value is 0 and Max value is 16777215.
# Default to empty.
#
# [*enable_security_group*]
# (optional) Controls if neutron security group is enabled or not.
# It should be false when you use nova security group.
# Defaults to true.
#

class neutron::plugins::ml2 (
$type_drivers = ['local', 'flat', 'vlan', 'gre', 'vxlan'],
Expand All @@ -93,8 +98,7 @@
$tunnel_id_ranges = ['20:100'],
$vxlan_group = '224.0.0.1',
$vni_ranges = ['10:100'],
# DEPRECATED PARAMS
$enable_security_group = undef
$enable_security_group = true
) {

include neutron::params
Expand Down

0 comments on commit 5b3abcf

Please sign in to comment.