diff --git a/libraries/consul_installation_binary.rb b/libraries/consul_installation_binary.rb index c18065ea..50b095c4 100644 --- a/libraries/consul_installation_binary.rb +++ b/libraries/consul_installation_binary.rb @@ -86,6 +86,7 @@ def self.binary_basename(node, resource) case node['kernel']['machine'] when 'x86_64', 'amd64' then ['consul', resource.version, node['os'], 'amd64'].join('_') when /i\d86/ then ['consul', resource.version, node['os'], '386'].join('_') + when /^arm/ then ['consul', resource.version, node['os'], 'arm'].join('_') else ['consul', resource.version, node['os'], node['kernel']['machine']].join('_') end.concat('.zip') end