Merge pull request #7859 from hashicorp/vagrant_box_name

use box_name instead of source_path when generating vagrant file
This commit is contained in:
Megan Marsh 2019-07-09 16:20:46 -07:00 committed by GitHub
commit 7b13eac1d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -199,7 +199,7 @@ func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (pack
&StepCreateVagrantfile{
Template: b.config.Template,
SyncedFolder: b.config.SyncedFolder,
SourceBox: b.config.SourceBox,
BoxName: b.config.BoxName,
OutputDir: b.config.OutputDir,
GlobalID: b.config.GlobalID,
},

View File

@ -14,10 +14,10 @@ import (
type StepCreateVagrantfile struct {
Template string
SourceBox string
OutputDir string
SyncedFolder string
GlobalID string
BoxName string
}
var DEFAULT_TEMPLATE = `Vagrant.configure("2") do |config|
@ -56,7 +56,7 @@ func (s *StepCreateVagrantfile) createVagrantfile() (string, error) {
opts := &VagrantfileOptions{
SyncedFolder: s.SyncedFolder,
BoxName: s.SourceBox,
BoxName: s.BoxName,
}
err = tpl.Execute(templateFile, opts)

View File

@ -20,7 +20,7 @@ func TestStepCreateVagrantfile_Impl(t *testing.T) {
func TestCreateFile(t *testing.T) {
testy := StepCreateVagrantfile{
OutputDir: "./",
SourceBox: "bananas",
BoxName: "bananas",
}
templatePath, err := testy.createVagrantfile()
if err != nil {