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:
parent
c88d52082a
commit
13be9731ab
|
@ -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(" ")} "
|
||||
|
|
Loading…
Reference in New Issue