Default the puppet config environment variables to an empty hash
This commit is contained in:
parent
9b12d4db48
commit
58c3be9344
|
@ -87,9 +87,10 @@ module VagrantPlugins
|
|||
if @manifest_file == UNSET_VALUE
|
||||
@manifest_file = nil
|
||||
end
|
||||
if @environment_variables == UNSET_VALUE
|
||||
@environment_variables = nil
|
||||
end
|
||||
end
|
||||
|
||||
if @environment_variables == UNSET_VALUE
|
||||
@environment_variables = {}
|
||||
end
|
||||
|
||||
@binary_path = nil if @binary_path == UNSET_VALUE
|
||||
|
|
Loading…
Reference in New Issue