mirror of
https://github.com/inspec/inspec
synced 2024-12-19 09:33:20 +00:00
2a1b1d8e88
Signed-off-by: Miah Johnson <miah@chia-pet.org>
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
|