vaguerent/.gitignore
Chris Roberts 415b006ebd Add helper for loading OpenSSL providers
On OpenSSL 3, engines have been deprecated being replaced by providers.
The Ruby openssl library supported loading specific engines, but there
is no replacement currently using providers. The winrm communicator
specifically relies on a MD4 which OpenSSL has marked as legacy and no
longer loads by default.

The extension included loads the legacy provider as well as the default
provider. The legacy provider includes MD4, thus allowing winrm to
function again.
2023-05-25 15:36:55 -07:00

80 lines
877 B
Plaintext

# OS-specific
.DS_Store
# Editor swapfiles
.*.sw?
*~
# Vagrant stuff
acceptance_config.yml
boxes/*
/.vagrant
/website/.vagrant
/website/build
/vagrant-spec.config.rb
test/vagrant-spec/.vagrant/
.vagrant/
/vagrant
/pkg
data.db
vagrant-restore.db.lock
cmd/vagrant/Vagrantfile
binstubs/
# Bundler/Rubygems
*.gem
.bundle
pkg/*
/Gemfile.lock
test/tmp/
/exec
.ruby-bundle
vendor/bundle
# Documentation
_site/*
.yardoc/
doc/
# Python
*.pyc
# Rubinius
*.rbc
# IDE junk
.idea/*
*.iml
.project
.vscode
# Ruby Managers
.rbenv
.rbenv-gemsets
.ruby-gemset
.ruby-version
.rvmrc
# Box storage for spec
test/vagrant-spec/boxes/*.box
simple_speed.py
cover.out
# nektos/act secrets file
.secrets
# delve debug binary
__debug_bin
# solargraph (ruby lsp) & rubocop
.solargraph.yml
.rubocop.yml
# Ignore generated binaries
bin/vagrant-go*
# extension
tmp*
lib/vagrant/vagrant_ssl.so