From: elijah Date: Tue, 28 May 2013 00:04:53 +0000 (-0700) Subject: important! the order that a node specifies its services and tags is now important... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e8191d25a091eef1e81bc79c61e4867c81e19d0f;p=leap%2Fleap_cli.git important! the order that a node specifies its services and tags is now important. the services/tags are applied IN THE ORDER specified. --- diff --git a/lib/leap_cli/config/manager.rb b/lib/leap_cli/config/manager.rb index a88f7d0..714cd6a 100644 --- a/lib/leap_cli/config/manager.rb +++ b/lib/leap_cli/config/manager.rb @@ -251,7 +251,7 @@ module LeapCli # inherit from services if node['services'] - node['services'].to_a.sort.each do |node_service| + node['services'].to_a.each do |node_service| service = @services[node_service] if service.nil? log 0, :error, 'in node "%s": the service "%s" does not exist.' % [node['name'], node_service] @@ -267,7 +267,7 @@ module LeapCli node['tags'] = (node['tags'] || []).to_a + ['local'] end if node['tags'] - node['tags'].to_a.sort.each do |node_tag| + node['tags'].to_a.each do |node_tag| tag = @tags[node_tag] if tag.nil? log 0, :error, 'in node "%s": the tag "%s" does not exist.' % [node['name'], node_tag]