Skip to content

Instantly share code, notes, and snippets.

@ggarnier
Last active April 8, 2019 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ggarnier/fc306a58d9c6ec185545a3d944c9b8a3 to your computer and use it in GitHub Desktop.
Save ggarnier/fc306a58d9c6ec185545a3d944c9b8a3 to your computer and use it in GitHub Desktop.
Adicionar certificados digitais da Receita Federal no Ubuntu
sudo mkdir -p /usr/share/ca-certificates/extra
for f in *.cer; do mv $f ${f%.*}.crt; done
sudo mv *.crt /usr/share/ca-certificates/extra/
sudo dpkg-reconfigure ca-certificates

Na tela de configuração do ca-certificates, selecione os novos certificados e clique em Ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment