inspec/test/cookbooks/os_prepare/recipes/os_env.rb
Ryan Davis a5309ea392 blindly applied chefstyle -a
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-06-11 18:52:03 -07:00

13 lines
339 B
Ruby

#
# change a few Windows registry keys for testing purposes
if node["platform_family"] == "windows"
powershell_script "Write User TEMP" do
code <<-EOH
[System.Environment]::SetEnvironmentVariable('TEMP', 'C:\\TEMPUSER', [System.environmentVariableTarget]::User)
EOH
end
env "TEMP" do
value 'C:\TEMPSYSTEM'
end
end