summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYolanda Robla Mota <yroblamo@redhat.com>2016-11-10 09:53:22 +0100
committerYolanda Robla Mota <yroblamo@redhat.com>2016-11-10 09:54:49 +0100
commit8cbac5821dee76890a7534584888eded8d15c889 (patch)
treeff12c5b39c2f57544aa62083d12f29d908699b41
parent9f061b081273594f61bfaffaecc60a5ade553e87 (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>
-rw-r--r--prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp b/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp
index 6b608a7a7..fc9bf7163 100644
--- a/prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp
+++ b/prototypes/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,
}