We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to add some additional automation for Debian/Ubuntu systems.
Chrome uses $HOME/.pki/nssdb on Ubuntu for certificates.
$HOME/.pki/nssdb
Firefox uses a random string path: ~/.mozilla/firefox/${RANDOM PROFILE}.default-release
~/.mozilla/firefox/${RANDOM PROFILE}.default-release
Need the certutil binary: sudo apt install libnss3-tools
sudo apt install libnss3-tools
For Chrome:
certutil -d sql:$HOME/.pki/nssdb -A -t "C,," -n tribe -i /usr/local/share/ca-certificates/tribeCA.crt
For Firefox:
find ~/.mozilla/firefox -name "cert9.db" | xargs dirname
certutil -d sql:$(find ~/.mozilla/firefox -name "cert9.db" | xargs dirname) -A -t "C,," -n tribe -i /usr/local/share/ca-certificates/tribeCA.crt
The text was updated successfully, but these errors were encountered:
defunctl
No branches or pull requests
Need to add some additional automation for Debian/Ubuntu systems.
Chrome uses
$HOME/.pki/nssdb
on Ubuntu for certificates.Firefox uses a random string path:
~/.mozilla/firefox/${RANDOM PROFILE}.default-release
Need the certutil binary:
sudo apt install libnss3-tools
For Chrome:
certutil -d sql:$HOME/.pki/nssdb -A -t "C,," -n tribe -i /usr/local/share/ca-certificates/tribeCA.crt
For Firefox:
find ~/.mozilla/firefox -name "cert9.db" | xargs dirname
certutil -d sql:$(find ~/.mozilla/firefox -name "cert9.db" | xargs dirname) -A -t "C,," -n tribe -i /usr/local/share/ca-certificates/tribeCA.crt
The text was updated successfully, but these errors were encountered: