From 7b50de33dab83baab625aa9ba47520bcf4426882 Mon Sep 17 00:00:00 2001 From: Mikhail Zholobov Date: Sat, 4 Oct 2014 14:01:31 +0400 Subject: [PATCH] post-processor/vagrant/parallels: Removed unnecessary filling the Vagrantfile --- post-processor/vagrant/parallels.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/post-processor/vagrant/parallels.go b/post-processor/vagrant/parallels.go index f5c291490..a6ee26b95 100644 --- a/post-processor/vagrant/parallels.go +++ b/post-processor/vagrant/parallels.go @@ -54,13 +54,5 @@ func (p *ParallelsProvider) Process(ui packer.Ui, artifact packer.Artifact, dir } } - // Create the Vagrantfile from the template - vagrantfile = fmt.Sprintf(parallelsVagrantfile) - return } - -var parallelsVagrantfile = ` -Vagrant.configure("2") do |config| -end -`