config_by_role is only used in once place: openstack-compute::nova-common. And, in this single place it happens to return inconsistent results. Now that we have search_for, which does return consistent results, move this one last config_by_role call to use that. In the interest of good clean living, I am removing this code. Bumping to version 0.4.0 Change-Id: Ib755a5d568008599ee7d663f43716e7fe47251f9
		
			
				
	
	
		
			18 lines
		
	
	
		
			582 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			582 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
name             "openstack-common"
 | 
						|
maintainer       "AT&T Services, Inc."
 | 
						|
maintainer_email "cookbooks@lists.tfoundry.com"
 | 
						|
license          "Apache 2.0"
 | 
						|
description      "Common OpenStack attributes, libraries and recipes."
 | 
						|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
 | 
						|
version          "0.4.0"
 | 
						|
 | 
						|
recipe           "openstack-common", "Installs/Configures common recipes"
 | 
						|
recipe           "openstack-common::logging", "Installs/Configures common logging"
 | 
						|
 | 
						|
%w{ ubuntu suse }.each do |os|
 | 
						|
  supports os
 | 
						|
end
 | 
						|
 | 
						|
depends          "apt"
 | 
						|
depends          "database"
 |