Closed andheiberg closed 10 years ago
Think I fixed it with this in my Vagrant file
config.vm.define "local", primary: true do |local|
local.vm.box = 'precise32'
local.vm.box_url = 'http://files.vagrantup.com/precise32.box'
end
config.vm.define "web" do |web|
web.vm.box = 'dummy'
web.vm.box_url = 'https://github.com/tknerr/vagrant-managed-servers/raw/master/dummy.box'
end
Closing as it was resolved and seems to be unrelated to vagrant-managed-servers
I can't seam to understand how I should set this up. I thought this would let me setup both my local environment and my local environment with
vagrant up
by only addingvagrant up --provider=managed
. Is this incorrect?I've added
vagrant box add dummy https://github.com/tknerr/vagrant-managed-servers/raw/master/dummy.box
And added this to Vagrant file
I then try to run
vagrant up dummy --provider=managed
But this gives me
The machine with the name 'dummy-vps' was not found configured for this Vagrant environment.