vagrant-hostmanager
vagrant-hostmanager copied to clipboard
:pencil: A Vagrant plugin that manages hosts files within a multi-machine environment.
When using vagrant openstack, I find that vagrant hostmanager reports that "machine with the name 12345-1 was not configured for this environment". This is a **fatal** error . However, those...
I would like to add some static IPv6 addresses to the hosts file on the machines in my vagrant environment. The addresses are configured over /etc/sysconfig/network-scripts/ifcfg-eth1:ip6 I know the alias...
I have the following block in my `Vagrantfile` to only run hostmanager if it is installed: ``` if defined? VagrantPlugins::HostManager config.hostmanager.enabled = true config.hostmanager.manage_host = true config.hostmanager.include_offline = false #...
Sudo on the host should not be required if manage_host is set to false.
I've this configuration, with hostmanager configured only for "virtualbox" ``` Vagrant.configure("2") do |config| config.vm.hostname = "foobar" config.ssh.forward_agent = true config.vm.provider "virtualbox" do |v, override| override.vm.box = "debian-wheezy64" override.vm.box_url = "...."...
Hey there, I think I let this patch stay idle for a while, and it's now back in my more pressing issues TODO list. It started in: https://github.com/smdahlen/vagrant-hostmanager/pull/109 and https://github.com/smdahlen/vagrant-hostmanager/pull/111...
Hi guys, I'd like an easy way to deactivate the host. I currently host a vagrant machine that points to `myhost.com`, and the stage server is in `myhost.com` as well....
I'd like to have the IP resolving logic always use the `ip_resolver` Proc, and implement the default behavior (of using private_network or ssh_info) as a Proc itself. This way we...

Hi All, I am getting below error while use vagrant up command, Please let me know what should i do ----------------------- $ vagrant up Bringing machine 'db01' up with 'virtualbox'...