FYI, I went with the following approach to ensure the correct files were in place:
remote_file "#{java_home}/jre/lib/security/US_export_policy.jar" do
source 'https://s3.amazonaws.com/com.clari.provisioning/US_export_policy.jar'
mode 644
checksum 'b800fef6edc0f74560608cecf3775f7a91eb08d6c3417aed81a87c6371726115' # `shasum -a 256 US_export_policy.jar`
end
remote_file "#{java_home}/jre/lib/security/local_policy.jar" do
source 'https://s3.amazonaws.com/com.clari.provisioning/local_policy.jar'
mode 644
checksum '4a5c8f64107c349c662ea688563e5cd07d675255289ab25246a3a46fc4f85767' # `shasum -a 256 local_policy.jar`
end
FYI, I went with the following approach to ensure the correct files were in place: