From 5c7eb47c3d1e1e061b19b15a086aa920703e51b5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 28 Jun 2013 10:20:49 -0400 Subject: [PATCH] website: set base mac address example --- website/source/docs/post-processors/vagrant.html.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/source/docs/post-processors/vagrant.html.markdown b/website/source/docs/post-processors/vagrant.html.markdown index c12988aa1..2e832a86d 100644 --- a/website/source/docs/post-processors/vagrant.html.markdown +++ b/website/source/docs/post-processors/vagrant.html.markdown @@ -97,7 +97,9 @@ in the Vagrantfile for networking to work properly with Vagrant. An example Vagrantfile template is shown below: ``` -TODO +Vagrant.configure("2") do |config| + config.vm.base_mac = "{{ .BaseMacAddress }}" +end ``` ### VMware Provider