builder/virtualbox: Attach the hard drive, not quite working yet
This commit is contained in:
parent
b9cd48bbc6
commit
7a9499e1f0
|
@ -19,6 +19,7 @@ func (s *stepCreateDisk) Run(state map[string]interface{}) multistep.StepAction
|
||||||
config := state["config"].(*config)
|
config := state["config"].(*config)
|
||||||
driver := state["driver"].(Driver)
|
driver := state["driver"].(Driver)
|
||||||
ui := state["ui"].(packer.Ui)
|
ui := state["ui"].(packer.Ui)
|
||||||
|
vmName := state["vmName"].(string)
|
||||||
|
|
||||||
format := "VDI"
|
format := "VDI"
|
||||||
path := filepath.Join(config.OutputDir, fmt.Sprintf("%s.%s", config.VMName, strings.ToLower(format)))
|
path := filepath.Join(config.OutputDir, fmt.Sprintf("%s.%s", config.VMName, strings.ToLower(format)))
|
||||||
|
@ -41,6 +42,28 @@ func (s *stepCreateDisk) Run(state map[string]interface{}) multistep.StepAction
|
||||||
// Set the path so that we can delete it later
|
// Set the path so that we can delete it later
|
||||||
s.diskPath = path
|
s.diskPath = path
|
||||||
|
|
||||||
|
// Add the IDE controller so we can later attach the disk
|
||||||
|
controllerName := "IDE Controller"
|
||||||
|
err = driver.VBoxManage("storagectl", vmName, "--name", controllerName, "--add", "ide")
|
||||||
|
if err != nil {
|
||||||
|
ui.Error(fmt.Sprintf("Error creating disk controller: %s", err))
|
||||||
|
return multistep.ActionHalt
|
||||||
|
}
|
||||||
|
|
||||||
|
// Attach the disk to the controller
|
||||||
|
command = []string{
|
||||||
|
"storagectl", vmName,
|
||||||
|
"--storagectl", controllerName,
|
||||||
|
"--port", "0",
|
||||||
|
"--device", "0",
|
||||||
|
"--type", "hdd",
|
||||||
|
"--medium", path,
|
||||||
|
}
|
||||||
|
if err := driver.VBoxManage(command...); err != nil {
|
||||||
|
ui.Error(fmt.Sprintf("Error attaching hard drive: %s", err))
|
||||||
|
return multistep.ActionHalt
|
||||||
|
}
|
||||||
|
|
||||||
time.Sleep(15 * time.Second)
|
time.Sleep(15 * time.Second)
|
||||||
return multistep.ActionContinue
|
return multistep.ActionContinue
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// This step creates the actual virtual machine.
|
// This step creates the actual virtual machine.
|
||||||
|
//
|
||||||
|
// Produces:
|
||||||
|
// vmName string - The name of the VM
|
||||||
type stepCreateVM struct{
|
type stepCreateVM struct{
|
||||||
vmName string
|
vmName string
|
||||||
}
|
}
|
||||||
|
@ -41,6 +44,9 @@ func (s *stepCreateVM) Run(state map[string]interface{}) multistep.StepAction {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set the final name in the state bag so others can use it
|
||||||
|
state["vmName"] = s.vmName
|
||||||
|
|
||||||
return multistep.ActionContinue
|
return multistep.ActionContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue