mirror of
https://github.com/inspec/inspec
synced 2024-12-19 17:43:44 +00:00
16 lines
381 B
Ruby
16 lines
381 B
Ruby
|
# encoding: utf-8
|
||
|
# author: Omar Irizarry
|
||
|
#
|
||
|
# 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
|