class Specinfra::HostInventory::IptablesFilter

Public Instance Methods

get() click to toggle source
# File lib/pullmatic/resource/network.rb, line 107
def get
  cmd = backend.command.get(:get_inventory_iptables_filter)
  ret = backend.run_command(cmd)
  if ret.exit_status == 0
    parse(ret.stdout)
  else
    nil
  end
end