Sha256: 5d9595d993c98a7dc743f69322b7ba6b4f9dfc2a2d37f46f4d729ca3fbe0e3c9
Contents?: true
Size: 410 Bytes
Versions: 39
Compression:
Stored size: 410 Bytes
Contents
#!/bin/bash # This script downloads the Root CAs list from Mozilla and stores # it under ca/ directory for TLS validation. # cacert.pem is downloaded from http://curl.haxx.se/docs/caextract.html # (the exact link is http://curl.haxx.se/ca/cacert.pem). # cacert.pem is just downloaded in case the server version is newer than # the local version of the file. cd ca/ wget -N http://curl.haxx.se/ca/cacert.pem
Version data entries
39 entries across 39 versions & 2 rubygems