使用Chef Inspec测试{(仅Windows)是否需要重新启动

时间:2020-09-01 09:32:10

标签: windows chef-infra inspec

我是Chef Inspec的新手,我想使用Inspec代码测试(仅Windows)需要重新启动。下面是我的代码:

# Reboot Required Yes for windows  

control 'PowerShellTest' do
  impact 0.1
    title 'Check powershell code inside inspec'
    desc  'TestCase for Powershell'
    if os.family == 'windows'
    describe command(shutdown /r) do
      its('action') { should be 'yes' }
      its('stderr') { should eq '' }
     its('exit_status') { should eq 0 }
  end
end

enter image description here

0 个答案:

没有答案