Commit 365b44c5 authored by Rickard von Essen's avatar Rickard von Essen

parallels-iso: allow absolute output directory.

Fixes [GH-1466]
parent a23eb751
......@@ -2,10 +2,10 @@ package iso
import (
"fmt"
"github.com/mitchellh/multistep"
parallelscommon "github.com/mitchellh/packer/builder/parallels/common"
"github.com/mitchellh/packer/packer"
"path/filepath"
)
// This step creates the actual virtual machine.
......@@ -21,15 +21,13 @@ func (s *stepCreateVM) Run(state multistep.StateBag) multistep.StepAction {
config := state.Get("config").(*config)
driver := state.Get("driver").(parallelscommon.Driver)
ui := state.Get("ui").(packer.Ui)
name := config.VMName
path := filepath.Join(".", config.OutputDir)
commands := make([][]string, 8)
commands[0] = []string{
"create", name,
"--distribution", config.GuestOSType,
"--dst", path,
"--dst", config.OutputDir,
"--vmtype", "vm",
}
commands[1] = []string{"set", name, "--cpus", "1"}
......
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