This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hostname = "vg-guest1" | |
Vagrant.configure("2") do |config| | |
# config.vm.box = "ubuntu" | |
# configure guest hostname | |
config.vm.hostname = hostname | |
# configure vm name used in vagrant stdout and logs etc. | |
config.vm.define hostname do |hostname| |