X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/bb846b71a62082dbcbb2cd1defe853934b34347f..a406b373ee9a85b2f79e187b582379326b7b70d2:/cookbooks/prometheus/resources/exporter.rb diff --git a/cookbooks/prometheus/resources/exporter.rb b/cookbooks/prometheus/resources/exporter.rb index c978f6c62..6a17ef3ff 100644 --- a/cookbooks/prometheus/resources/exporter.rb +++ b/cookbooks/prometheus/resources/exporter.rb @@ -109,7 +109,23 @@ action_class do end def executable_path - "/opt/prometheus-exporters/exporters/#{new_resource.exporter}/#{new_resource.exporter}_exporter" + if ::File.exist?("#{executable_directory}/#{executable_name}_#{executable_architecture}") + "#{executable_directory}/#{executable_name}_#{executable_architecture}" + else + "#{executable_directory}/#{executable_name}" + end + end + + def executable_directory + "/opt/prometheus-exporters/exporters/#{new_resource.exporter}" + end + + def executable_name + "#{new_resource.exporter}_exporter" + end + + def executable_architecture + node[:cpu][:architecture] end def executable_options