builder/virtualbox: whitespace
This commit is contained in:
parent
d6d700f7c5
commit
019ab13f53
|
@ -22,7 +22,10 @@ func (s *stepCreateVM) Run(state map[string]interface{}) multistep.StepAction {
|
||||||
name := config.VMName
|
name := config.VMName
|
||||||
|
|
||||||
commands := make([][]string, 4)
|
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{
|
commands[1] = []string{
|
||||||
"modifyvm", name,
|
"modifyvm", name,
|
||||||
"--boot1", "disk", "--boot2", "dvd", "--boot3", "none", "--boot4", "none",
|
"--boot1", "disk", "--boot2", "dvd", "--boot3", "none", "--boot4", "none",
|
||||||
|
|
Loading…
Reference in New Issue