This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 572
undefined method 'except' #568
Comments
Same issue here. |
i face the same problem |
Follow this: #566 (comment) |
ricamos
added a commit
to ricamos/vagrant_aws
that referenced
this issue
Sep 24, 2021
Erro ao executar vagrant up --provider=aws. Solução adicionar as seguintes linhas ao vagrante file: class Hash def slice(*keep_keys) h = {} keep_keys.each { |key| h[key] = fetch(key) if has_key?(key) } h end unless Hash.method_defined?(:slice) def except(*less_keys) slice(*keys - less_keys) end unless Hash.method_defined?(:except) end Solução foi encontrada nas referências abaixo. mitchellh/vagrant-aws#568 mitchellh/vagrant-aws#566 On branch master Changes to be committed: modified: README.md modified: Vagrantfile
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
After installing vagrant-aws per #567, the following error appears at runtime:
Environment:
What am I missing?
The text was updated successfully, but these errors were encountered: