Vagrantfile: Allow local customization via .Vagrantfile.local
This commit is contained in:
parent
8705056485
commit
c3657a5700
|
@ -57,4 +57,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||
puppet.manifest_file = "site.pp"
|
||||
puppet.options = "--parser=future"
|
||||
end
|
||||
|
||||
if File.exists?(".Vagrantfile.local") then
|
||||
eval(IO.read(".Vagrantfile.local"), binding)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue