builder/virtualbox: whitespace

This commit is contained in:
Mitchell Hashimoto 2013-07-07 18:04:30 -07:00
parent d6d700f7c5
commit 019ab13f53
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,10 @@ func (s *stepCreateVM) Run(state map[string]interface{}) multistep.StepAction {
name := config.VMName
commands := make([][]string, 4)
commands[0] = []string{"createvm", "--name", name, "--ostype", config.GuestOSType, "--register"}
commands[0] = []string{
"createvm", "--name", name,
"--ostype", config.GuestOSType, "--register",
}
commands[1] = []string{
"modifyvm", name,
"--boot1", "disk", "--boot2", "dvd", "--boot3", "none", "--boot4", "none",