builder/virtualbox/ovf: re-order some steps
This commit is contained in:
parent
dd767c9d54
commit
5b223f0798
|
@ -39,9 +39,6 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
|
||||||
|
|
||||||
// Build the steps.
|
// Build the steps.
|
||||||
steps := []multistep.Step{
|
steps := []multistep.Step{
|
||||||
&StepImport{
|
|
||||||
SourcePath: b.config.SourcePath,
|
|
||||||
},
|
|
||||||
&vboxcommon.StepOutputDir{
|
&vboxcommon.StepOutputDir{
|
||||||
Force: b.config.PackerForce,
|
Force: b.config.PackerForce,
|
||||||
Path: b.config.OutputDir,
|
Path: b.config.OutputDir,
|
||||||
|
@ -50,6 +47,9 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
|
||||||
&common.StepCreateFloppy{
|
&common.StepCreateFloppy{
|
||||||
Files: b.config.FloppyFiles,
|
Files: b.config.FloppyFiles,
|
||||||
},
|
},
|
||||||
|
&StepImport{
|
||||||
|
SourcePath: b.config.SourcePath,
|
||||||
|
},
|
||||||
/*
|
/*
|
||||||
new(stepAttachGuestAdditions),
|
new(stepAttachGuestAdditions),
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue