# File lib/foreman-proxy_openscap/openscap_lib.rb, line 46 def self.store_arf(spool_arf_dir, data) filename = Digest::SHA256.hexdigest data target_path = spool_arf_dir + filename File.open(target_path,'w') { |f| f.write(data) } return target_path end