diff options
author | YuviPanda <yuvipanda@gmail.com> | 2015-07-12 23:31:15 -0400 |
---|---|---|
committer | YuviPanda <yuvipanda@gmail.com> | 2015-07-14 09:21:48 -0400 |
commit | 2bb4f3d3c350aaac569f0c6a8c7935f4c35ecfee (patch) | |
tree | d526c7a32032887adbcf927a81b4068f0b67c59d | |
parent | f1263dc48510c92366a1203beec84e9fd27e1c46 (diff) |
vagrant: Fix variable shadowing in Vagrantfile
I'm unsure if the two levels of config are actually required,
but making the most minimal changes possible atm.
-rw-r--r-- | Vagrantfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index 16f973cb..fdf92020 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,5 +1,7 @@ -Vagrant.configure("2") do |config| - config.vm.define :node1 do |config| +# -*- mode: ruby -*- +# vi: set ft=ruby : +Vagrant.configure("2") do |vagrant_config| + vagrant_config.vm.define :node1 do |config| # Please verify the sha512 sum of the downloaded box before importing it into vagrant ! # see https://leap.se/en/docs/platform/details/development#Verify.vagrantbox.download |