summaryrefslogtreecommitdiffstats
path: root/puppet-infracloud/modules/opnfv
diff options
context:
space:
mode:
authorYolanda Robla Mota <yroblamo@redhat.com>2016-11-10 09:53:22 +0100
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2017-08-11 12:56:12 -0700
commitf48d26f7a7288189bd809c2d46395aa6c436f96f (patch)
tree4e35c64917c3b597c92a22e7504e94765be9bd14 /puppet-infracloud/modules/opnfv
parent0b9c2676386a62912cfbab58cb01045cc2ffe649 (diff)
Fix bug in setting udp ports
There was a typo that prevented to configure udp ports properly, causing dhcp boot to fail. Change-Id: Ib853a9b9a21da113bda12b5cc1f33b3819442139 Signed-Off-By: Yolanda Robla <yroblamo@redhat.com>
Diffstat (limited to 'puppet-infracloud/modules/opnfv')
-rw-r--r--puppet-infracloud/modules/opnfv/manifests/server.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet-infracloud/modules/opnfv/manifests/server.pp b/puppet-infracloud/modules/opnfv/manifests/server.pp
index 6b608a7a..fc9bf716 100644
--- a/puppet-infracloud/modules/opnfv/manifests/server.pp
+++ b/puppet-infracloud/modules/opnfv/manifests/server.pp
@@ -22,7 +22,7 @@ class opnfv::server (
class { 'iptables':
public_tcp_ports => $iptables_public_tcp_ports,
- public_udp_ports => $all_udp,
+ public_udp_ports => $iptables_public_udp_ports,
rules4 => $iptables_rules4,
rules6 => $iptables_rules6,
}