官方文档:https://www.vagrantup.com/docs/index.html
参考文章:https://github.com/astaxie/go-best-practice/blob/master/ebook/zh/preface.md
Vagrant.configure(“2″) do |config|
config.vm.box = “centos6″
#指定vm的hostname,会覆盖vm中/etc/hostsname中的设置。
config.vm.hostname = “localhost”