This repository has been archived on 2025-07-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files

16 lines
339 B
Ruby
Raw Permalink Normal View History

script = <<-EOH
$nic = get-netadapter
Get-NetAdapterBinding InterfaceAlias $nic.name ComponentID ms_tcpip6
EOH
control "ipv6" do
title 'Disabled network protocol IPv6'
desc '
This test assures that IPv6 is disabled
'
describe powershell(script) do
its('stdout') { should match 'False' }
end
end