Last active
October 16, 2023 23:02
-
-
Save RothAndrew/5ab42acc290b2db13aad08fec2b5e4b4 to your computer and use it in GitHub Desktop.
install-dod-certs-on-amazon-linux-2
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/bash | |
wget https://dl.dod.cyber.mil/wp-content/uploads/pki-pke/zip/unclass-certificates_pkcs7_DoD.zip | |
unzip unclass-certificates_pkcs7_DoD.zip | |
cd certificates_pkcs7_v5_12_dod/ | |
sudo cp -f ./dod_pke_chain.pem /etc/pki/ca-trust/source/anchors/ | |
sudo update-ca-trust |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment