inspec/test/cookbooks/os_prepare/recipes/os_env.rb
Miah Johnson 6c19e81a06 Remove authors tags from source files.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -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