2013-12-22 13:40:39 -05:00
|
|
|
package common
|
2013-06-12 21:07:08 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-10-09 12:59:47 -04:00
|
|
|
"log"
|
2013-10-09 13:14:09 -04:00
|
|
|
"path/filepath"
|
2014-03-13 23:26:26 -04:00
|
|
|
"strings"
|
2014-03-14 12:22:49 -04:00
|
|
|
"time"
|
2013-06-12 21:07:08 -04:00
|
|
|
)
|
|
|
|
|
2013-07-04 17:44:48 -04:00
|
|
|
// This step cleans up forwarded ports and exports the VM to an OVF.
|
2013-06-12 21:07:08 -04:00
|
|
|
//
|
|
|
|
// Uses:
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// exportPath string - The path to the resulting export.
|
2013-12-22 13:40:39 -05:00
|
|
|
type StepExport struct {
|
2014-03-27 02:11:34 -04:00
|
|
|
Format string
|
|
|
|
OutputDir string
|
|
|
|
ExportOpts []string
|
|
|
|
SkipNatMapping bool
|
2013-12-22 13:40:39 -05:00
|
|
|
}
|
2013-06-12 21:07:08 -04:00
|
|
|
|
2013-12-22 13:40:39 -05:00
|
|
|
func (s *StepExport) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
driver := state.Get("driver").(Driver)
|
2013-08-31 15:44:58 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
vmName := state.Get("vmName").(string)
|
2013-06-12 21:07:08 -04:00
|
|
|
|
2013-10-09 12:59:47 -04:00
|
|
|
// Wait a second to ensure VM is really shutdown.
|
|
|
|
log.Println("1 second timeout to ensure VM is really shutdown")
|
|
|
|
time.Sleep(1 * time.Second)
|
2013-07-09 15:38:34 -04:00
|
|
|
ui.Say("Preparing to export machine...")
|
2014-03-27 02:11:34 -04:00
|
|
|
|
2015-06-10 13:50:08 -04:00
|
|
|
// Clear out the Packer-created forwarding rule
|
|
|
|
if !s.SkipNatMapping {
|
2014-03-27 02:11:34 -04:00
|
|
|
ui.Message(fmt.Sprintf(
|
|
|
|
"Deleting forwarded port mapping for SSH (host port %d)",
|
|
|
|
state.Get("sshHostPort")))
|
|
|
|
command := []string{"modifyvm", vmName, "--natpf1", "delete", "packerssh"}
|
|
|
|
if err := driver.VBoxManage(command...); err != nil {
|
|
|
|
err := fmt.Errorf("Error deleting port forwarding rule: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2013-07-04 17:44:48 -04:00
|
|
|
}
|
|
|
|
|
2013-07-05 14:00:18 -04:00
|
|
|
// Export the VM to an OVF
|
2013-12-22 13:40:39 -05:00
|
|
|
outputPath := filepath.Join(s.OutputDir, vmName+"."+s.Format)
|
2013-06-12 21:07:08 -04:00
|
|
|
|
2015-06-10 13:50:08 -04:00
|
|
|
command := []string{
|
2013-06-12 21:07:08 -04:00
|
|
|
"export",
|
|
|
|
vmName,
|
|
|
|
"--output",
|
|
|
|
outputPath,
|
|
|
|
}
|
2014-03-13 23:12:50 -04:00
|
|
|
command = append(command, s.ExportOpts...)
|
2014-03-13 22:33:35 -04:00
|
|
|
|
2013-06-12 21:07:08 -04:00
|
|
|
ui.Say("Exporting virtual machine...")
|
2014-03-13 23:26:26 -04:00
|
|
|
ui.Message(fmt.Sprintf("Executing: %s", strings.Join(command, " ")))
|
2013-06-12 21:07:08 -04:00
|
|
|
err := driver.VBoxManage(command...)
|
|
|
|
if err != nil {
|
2013-06-20 00:07:53 -04:00
|
|
|
err := fmt.Errorf("Error exporting virtual machine: %s", err)
|
2013-08-31 15:44:58 -04:00
|
|
|
state.Put("error", err)
|
2013-06-20 00:07:53 -04:00
|
|
|
ui.Error(err.Error())
|
2013-06-12 21:07:08 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-08-31 15:44:58 -04:00
|
|
|
state.Put("exportPath", outputPath)
|
2013-06-12 21:07:08 -04:00
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-12-22 13:40:39 -05:00
|
|
|
func (s *StepExport) Cleanup(state multistep.StateBag) {}
|