mac_address.rb 273 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class SystemReport::Plugin::MacAddress < SystemReport::Plugin
  3. DESCRIPTION = __('MAC address (unique identifier of the report)').freeze
  4. def fetch
  5. Mac.addr.try(:list) || Mac.addr
  6. end
  7. end