This commit is contained in:
parent
8f67f939f9
commit
65ff092fd4
|
@ -77,40 +77,40 @@ func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (pack
|
||||||
&common.StepConfigParams{
|
&common.StepConfigParams{
|
||||||
Config: &b.config.ConfigParamsConfig,
|
Config: &b.config.ConfigParamsConfig,
|
||||||
},
|
},
|
||||||
|
&packerCommon.StepCreateFloppy{
|
||||||
|
Files: b.config.FloppyFiles,
|
||||||
|
Directories: b.config.FloppyDirectories,
|
||||||
|
Label: b.config.FloppyLabel,
|
||||||
|
},
|
||||||
|
&StepAddFloppy{
|
||||||
|
Config: &b.config.FloppyConfig,
|
||||||
|
Datastore: b.config.Datastore,
|
||||||
|
Host: b.config.Host,
|
||||||
|
SetHostForDatastoreUploads: b.config.SetHostForDatastoreUploads,
|
||||||
|
},
|
||||||
|
&common.StepHTTPIPDiscover{
|
||||||
|
HTTPIP: b.config.BootConfig.HTTPIP,
|
||||||
|
Network: b.config.WaitIpConfig.GetIPNet(),
|
||||||
|
},
|
||||||
|
&packerCommon.StepHTTPServer{
|
||||||
|
HTTPDir: b.config.HTTPDir,
|
||||||
|
HTTPPortMin: b.config.HTTPPortMin,
|
||||||
|
HTTPPortMax: b.config.HTTPPortMax,
|
||||||
|
HTTPAddress: b.config.HTTPAddress,
|
||||||
|
},
|
||||||
|
&common.StepRun{
|
||||||
|
Config: &b.config.RunConfig,
|
||||||
|
SetOrder: true,
|
||||||
|
},
|
||||||
|
&common.StepBootCommand{
|
||||||
|
Config: &b.config.BootConfig,
|
||||||
|
Ctx: b.config.ctx,
|
||||||
|
VMName: b.config.VMName,
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
if b.config.Comm.Type != "none" {
|
if b.config.Comm.Type != "none" {
|
||||||
steps = append(steps,
|
steps = append(steps,
|
||||||
&packerCommon.StepCreateFloppy{
|
|
||||||
Files: b.config.FloppyFiles,
|
|
||||||
Directories: b.config.FloppyDirectories,
|
|
||||||
Label: b.config.FloppyLabel,
|
|
||||||
},
|
|
||||||
&common.StepAddFloppy{
|
|
||||||
Config: &b.config.FloppyConfig,
|
|
||||||
Datastore: b.config.Datastore,
|
|
||||||
Host: b.config.Host,
|
|
||||||
SetHostForDatastoreUploads: b.config.SetHostForDatastoreUploads,
|
|
||||||
},
|
|
||||||
&common.StepHTTPIPDiscover{
|
|
||||||
HTTPIP: b.config.BootConfig.HTTPIP,
|
|
||||||
Network: b.config.WaitIpConfig.GetIPNet(),
|
|
||||||
},
|
|
||||||
&packerCommon.StepHTTPServer{
|
|
||||||
HTTPDir: b.config.HTTPDir,
|
|
||||||
HTTPPortMin: b.config.HTTPPortMin,
|
|
||||||
HTTPPortMax: b.config.HTTPPortMax,
|
|
||||||
HTTPAddress: b.config.HTTPAddress,
|
|
||||||
},
|
|
||||||
&common.StepRun{
|
|
||||||
Config: &b.config.RunConfig,
|
|
||||||
SetOrder: true,
|
|
||||||
},
|
|
||||||
&common.StepBootCommand{
|
|
||||||
Config: &b.config.BootConfig,
|
|
||||||
Ctx: b.config.ctx,
|
|
||||||
VMName: b.config.VMName,
|
|
||||||
},
|
|
||||||
&common.StepWaitForIp{
|
&common.StepWaitForIp{
|
||||||
Config: &b.config.WaitIpConfig,
|
Config: &b.config.WaitIpConfig,
|
||||||
},
|
},
|
||||||
|
@ -123,15 +123,15 @@ func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (pack
|
||||||
&common.StepShutdown{
|
&common.StepShutdown{
|
||||||
Config: &b.config.ShutdownConfig,
|
Config: &b.config.ShutdownConfig,
|
||||||
},
|
},
|
||||||
&common.StepRemoveFloppy{
|
|
||||||
Datastore: b.config.Datastore,
|
|
||||||
Host: b.config.Host,
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
steps = append(steps,
|
steps = append(steps,
|
||||||
&common.StepRemoveCDRom{
|
&StepRemoveFloppy{
|
||||||
|
Datastore: b.config.Datastore,
|
||||||
|
Host: b.config.Host,
|
||||||
|
},
|
||||||
|
&StepRemoveCDRom{
|
||||||
Config: &b.config.RemoveCDRomConfig,
|
Config: &b.config.RemoveCDRomConfig,
|
||||||
},
|
},
|
||||||
&common.StepCreateSnapshot{
|
&common.StepCreateSnapshot{
|
||||||
|
|
Loading…
Reference in New Issue