Fix bug in setting udp ports 63/24163/1
authorYolanda Robla Mota <yroblamo@redhat.com>
Thu, 10 Nov 2016 08:53:22 +0000 (09:53 +0100)
committerYolanda Robla Mota <yroblamo@redhat.com>
Thu, 10 Nov 2016 08:54:49 +0000 (09:54 +0100)
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>
prototypes/puppet-infracloud/modules/opnfv/manifests/server.pp

index 6b608a7..fc9bf71 100644 (file)
@@ -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,
   }