This plugin adds an entry to your /etc/hosts file on the host system.
On up, resume and reload commands, it tries to add the information, if its not already existant in your hosts file. If it needs to be added, you will be asked for an administrator password, since it uses sudo to edit the file.
On halt, destroy, and suspend, those entries will be removed again.
By setting the config.hostsupdater.remove_on_suspend = false
, suspend will not remove them.
$ vagrant plugin install vagrant-hostsupdater
Uninstall it with:
$ vagrant plugin uninstall vagrant-hostsupdater
Update the plugin with:
$ vagrant plugin update vagrant-hostsupdater
You currently only need the hostname
and a :private_network
network with a fixed IP address.
config.vm.network :private_network, ip: "192.168.3.10"
config.vm.hostname = "www.testing.de"
config.hostsupdater.aliases = ["alias.testing.de", "alias2.somedomain.com"]
This IP address and the hostname will be used for the entry in the /etc/hosts
file.
To skip adding some entries to the /etc/hosts file add hostsupdater: "skip"
option to network configuration:
config.vm.network "private_network", ip: "172.21.9.9", hostsupdater: "skip"
Example:
config.vm.network :private_network, ip: "192.168.50.4"
config.vm.network :private_network,
ip: "172.21.9.9",
netmask: "255.255.240.0",
hostsupdater: "skip"
Add the following snippet to the top of the sudoers file using sudo visudo
. It will make vagrant
stop asking password when updating hosts file:
# Allow passwordless startup of Vagrant with vagrant-hostsupdater.
Cmnd_Alias VAGRANT_HOSTS_ADD = /bin/sh -c echo "*" >> /etc/hosts
Cmnd_Alias VAGRANT_HOSTS_REMOVE = /usr/bin/sed -i -e /*/ d /etc/hosts
%admin ALL=(root) NOPASSWD: VAGRANT_HOSTS_ADD, VAGRANT_HOSTS_REMOVE
If you would like to install vagrant-hostsupdater on the development version perform the following:
git clone https://github.com/cogitatio/vagrant-hostsupdater
cd vagrant-hostsupdater
git checkout develop
gem build vagrant-hostsupdater.gemspec
vagrant plugin install vagrant-hostsupdater-*.gem
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request on the
develop
branch
- Bugfix: Fixing
up
issue on initialize #28
- Stable release
- Feature: Added
skip
flag #69 - Feature: Hosts update on provision action #65
- Bugfix:
remove_on_suspend
should be true #19 - Bugfix: Line break not inserted before first host #37
- Bugfix: Old changes not removed in linux #67
- Bugfix: Writable issue on OSX #47
- Bugfix: Update hosts before provisioning #31
- Misc: Using Semantic Versioning for version number
- Misc: Added note regarding sudoers file
- bugfix: Fix additional new lines being added to hosts file (Thanks to vincentmac)
- bugfix: wrong path on Windows systems (Thanks to Im0rtality)
- bugfix: now not trying to remove anything if no machine id is given
- trying to use proper windows hosts file
- using hashed uids now to identify hosts entries (you might need to remove previous hostentries manually)
- fixed removing of host entries
- no sudo, if /etc/hosts is writeable
- option added to not remove hosts on suspend, adding hosts on resume (Thanks to Svelix)
- fixed problem with removing hosts entries on destroy command (Thanks to Andy Bohne)
- added aliases config option to define additional hostnames