mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
a5309ea392
Signed-off-by: Ryan Davis <zenspider@chef.io>
9 lines
429 B
Ruby
9 lines
429 B
Ruby
if platform_family?("rhel", "debian", "fedora")
|
|
execute "iptables -A INPUT -i eth0 -p tcp -m tcp "\
|
|
"--dport 80 -m state --state NEW -m comment "\
|
|
'--comment "http on 80" -j ACCEPT'
|
|
execute "iptables -N derby-cognos-web"
|
|
execute "iptables -A INPUT -j derby-cognos-web"
|
|
execute "iptables -A derby-cognos-web -p tcp -m tcp --dport 80 "\
|
|
'-m comment --comment "derby-cognos-web" -j ACCEPT'
|
|
end
|