Sha256: 544532634715b831ab016b48a44a55a0bbfa6c9927ee846ceb10fc24d4736c21
Contents?: true
Size: 1015 Bytes
Versions: 2
Compression:
Stored size: 1015 Bytes
Contents
vagrant-hosts ============= Manage vagrant guest local DNS resolution. Synopsis -------- Vagrant::Config.run do |config| config.vm.box = "ubuntu-12.04-server-i386" config.vm.provision :hosts do |provisioner| # Add a single hostname provisioner.add_host '10.0.2.2', ['myhost.vagrantup.internal'] # Or a fqdn and a short hostname provisioner.add_host '10.0.2.3', ['myotherhost.vagrantup.internal', 'myotherhost'] # Or as many aliases as you like! provisioner.add_host '10.0.2.5', [ 'mypuppetmaster.vagrantup.internal', 'puppet.vagrantup.internal', 'mypuppetmaster', 'puppet' ] end end Supported Guest Platforms ------------------------- * Linux * (soon) Windows (As soon as I get a chance to incorporate the driver) Installation ------------ # For full releases gem install vagrant-hosts # For pre releases gem install --pre vagrant-hosts # Vagrant hosts magic!
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-hosts-0.0.2 | README.markdown |
vagrant-hosts-0.0.1 | README.markdown |