Commit 5e440fa4 authored by Fabian Grutschus's avatar Fabian Grutschus

Arguments Prefix (--) was missing for (data)portconfig

parent 5b1463f7
...@@ -53,9 +53,9 @@ func (d *VBox42Driver) CreateSATAController(vmName string, name string) error { ...@@ -53,9 +53,9 @@ func (d *VBox42Driver) CreateSATAController(vmName string, name string) error {
return err return err
} }
portCountArg := "sataportcount" portCountArg := "--sataportcount"
if strings.HasPrefix(version, "4.3") { if strings.HasPrefix(version, "4.3") {
portCountArg = "portcount" portCountArg = "--portcount"
} }
command := []string{ command := []string{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment