A Vagrant plugin that installs CA certificates onto the virtual machine.
This is useful, for example, in the case where you are behind a corporate proxy server that injects its own self signed SSL certificates when you visit https sites.
vagrant plugin install vagrant-ca-certificates
config.ca_certificates.enabled = true
config.ca_certificates.certs = ["/path/to/ca_foo.crt", "/path/to/ca_bar.crt"]
rm vagrant-ca-certificates-*.gem ; \
vagrant plugin uninstall vagrant-ca-certificates ; \
gem build vagrant-ca-certificates.gemspec && \
vagrant plugin install vagrant-ca-certificates --plugin-source vagrant-ca-certificates-*.gem
- Fork the repository on GitHub
- Create a named feature branch (i.e.
add-new-feature
) - Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request
- William Bailey - @cowboysfromhell - (mail@williambailey.org.uk)
- John Bellone - @johnbellone - (jbellone@bloomberg.net)
Licensed under a MIT license.