Created
March 13, 2013 16:32
-
-
Save bsiegert/5153850 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# install and configure SSL root certificates on NetBSD with pkgsrc | |
set -e | |
pkgin install mozilla-rootcerts | |
cd /etc/openssl/certs # Default SSLCERTS path for NetBSD | |
mozilla-rootcerts extract | |
mozilla-rootcerts rehash | |
mkdir -p /etc/ssl/certs | |
cd /etc/ssl/certs | |
cat ../../openssl/certs/*.pem >ca-certificates.crt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment