From 13be9731ab89a13fd3450bf6e56b66a7fa846bf1 Mon Sep 17 00:00:00 2001 From: Timotei Dolean Date: Fri, 16 Oct 2015 16:20:15 +0300 Subject: [PATCH] Remove back tick in puppet facts definitions #6403 Starting with vagrant 1.7.3 (commit 1152b4e1df97fb5f468491954932d4f0c09875b1) we don't save the command to be executed in the file anymore, but we send it as a parameter, thus the back tick makes things worse. --- plugins/provisioners/puppet/provisioner/puppet.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/provisioners/puppet/provisioner/puppet.rb b/plugins/provisioners/puppet/provisioner/puppet.rb index f1987dbd5..89d39000f 100644 --- a/plugins/provisioners/puppet/provisioner/puppet.rb +++ b/plugins/provisioners/puppet/provisioner/puppet.rb @@ -212,7 +212,7 @@ module VagrantPlugins # If we're on Windows, we need to use the PowerShell style if windows? - facts.map! { |v| "`$env:#{v};" } + facts.map! { |v| "$env:#{v};" } end facter = "#{facts.join(" ")} "