Remove back tick in puppet facts definitions #6403

Starting with vagrant 1.7.3 
(commit 1152b4e1df) 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.
This commit is contained in:
Timotei Dolean 2015-10-16 16:20:15 +03:00
parent c88d52082a
commit 13be9731ab
1 changed files with 1 additions and 1 deletions

View File

@ -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(" ")} "