feature: bsusurrogate, add provision and cleanup temp keys step

This commit is contained in:
Marin Salinas 2019-02-04 12:25:37 -06:00 committed by Megan Marsh
parent 957bdae441
commit 3ed7c7ff33
1 changed files with 4 additions and 0 deletions

View File

@ -200,6 +200,10 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
b.config.Comm.SSHInterface),
SSHConfig: b.config.RunConfig.Comm.SSHConfigFunc(),
},
&common.StepProvision{},
&common.StepCleanupTempKeys{
Comm: &b.config.RunConfig.Comm,
},
}
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)