Method: Specinfra::Command::Linux::Base::Iptables.check_has_rule
- Defined in:
- lib/specinfra/command/linux/base/iptables.rb
permalink .check_has_rule(rule, table = nil, chain = nil) ⇒ Object
[View source]
3 4 5 6 7 8 9 10 |
# File 'lib/specinfra/command/linux/base/iptables.rb', line 3 def check_has_rule(rule, table=nil, chain=nil) cmd = "iptables" cmd += " -t #{escape(table)}" if table cmd += " -S" cmd += " #{escape(chain)}" if chain cmd += " | grep -- #{escape(rule)}" cmd end |