vagrant-hostmanager
vagrant-hostmanager copied to clipboard
:pencil: A Vagrant plugin that manages hosts files within a multi-machine environment.
With the below Vagrantfile, without hostmanager at all, everything works perfectly. With hostmanager manage_host enabled, but manage_guest disabled it also works perfectly. With manage_guest enabled, `vagrant up` crashes. `vagrant --version`:...
Using plugin with AWS provider. Defined a VM as follows: ``` config.vm.define "pmm", primary: true do |pmm| pmm.vm.hostname = "pmm" pmm.hostmanager.enabled = true pmm.hostmanager.manage_guest = true pmm.hostmanager.ignore_private_ip = false ......
Hi i try it on 3 different Windows hosts: Windows 7, Windows 8 and Windows 10 I have absolutely no clue what is wrong. plz help Vagrant 1.7.4 or Vagrant...
### Behavior: Issuing _vagarant hostmanager_ with "-h" or "--help" updates host files on vm(s). It shouldn't. Help message gets printed, anyway. ### Step to reproduce: ``` vagrant hostmanager -h Usage:...
Windows 7 Vagrant 1.8.1 Vagrant Host Manager 1.7.0 Attempting to vagrant up for the first time on Windows 7 (works fine on my Mac) - fails with a permission denied...
I am creating a `vagrant` environment using `make` Here is the `make` target ``` make mongodb: vagrant plugin install vagrant-hostmanager VAGRANT_VAGRANTFILE=Vagrantfile_MongoDB vagrant destroy -f vagrant up --provision ``` This fails...
When attempting to `vagrant up` (on a machine that has been `vagrant destroy`'d, and worked fine previously) I now get an error when vagrant-hostmanager tries to update the hosts file...
The real ip (obtained from vmware dhcp) was assigned correctly with previous version. example VagrantFile: ``` # -*- mode: ruby -*- # vi: set ft=ruby : # Ensure that VMWare...
Recent versions of Vagrant set the VM name and hostname as aliases to 127.0.0.1 at the top of `/etc/hosts` on CentOS. This seems to change the behavior of hostname resolution...
I am using Vagrant with vagrant-hostmanagrer and I use Puppet for provisioning. Since the /etc/hosts file now contains multiple entries for a single line, with the pure hostname being the...