From 2d463d69ec454abda9dbaaa6d8f249f4a68c12f7 Mon Sep 17 00:00:00 2001 From: Mark Vanderwiel Date: Tue, 11 Aug 2015 10:25:36 -0500 Subject: [PATCH] Fix dnsmasq centos for 7.1 Change the 6.5 dnsmasq checking to not include 7.1 which contains the package fixes. Change-Id: Ic9b8e2151f6218522dc592d3974073ea446559ac Closes-Bug: #1483794 --- recipes/dhcp_agent.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/dhcp_agent.rb b/recipes/dhcp_agent.rb index bf1c0284..ce06b16c 100644 --- a/recipes/dhcp_agent.rb +++ b/recipes/dhcp_agent.rb @@ -68,7 +68,7 @@ end case node['platform'] when 'centos' - if node['platform_version'].to_f >= 6.5 + if node['platform_version'].to_f < 7.1 dnsmasq_file = "#{Chef::Config[:file_cache_path]}/#{node['openstack']['network']['dhcp']['dnsmasq_rpm_version']}"