Skip to content
New issue

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

Fix ssh boolean values in Vagrantfile template #231

Merged

Conversation

zuazo
Copy link
Contributor

@zuazo zuazo commented May 22, 2016

This PR fixes boolean values inside the ssh: configuration key. For example:

---
driver:
  ssh:
    insert_key: false

This will create a Vagrantfile like the following:

Vagrant.configure("2") do |c|
  c.ssh.insert_key = "false"
end

Instead of:

Vagrant.configure("2") do |c|
  c.ssh.insert_key = false
end

This PR fixes that little problem.

Bug mentioned in #163.

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

Successfully merging this pull request may close these issues.

2 participants