HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //proc/self/root/usr/lib/ruby/site_ruby/1.8/facter/util/macaddress.rb
# A module to gather macaddress facts
#
module Facter::Util::Macaddress

  def self.standardize(macaddress)
    return nil unless macaddress
    macaddress.split(":").map{|x| "0#{x}"[-2..-1]}.join(":")
  end

  module Darwin
    def self.macaddress
      iface = default_interface
      Facter.warn "Could not find a default route. Using first non-loopback interface" if iface.empty?

      macaddress = `#{ifconfig_command} #{iface} | /usr/bin/awk '/ether/{print $2;exit}'`.chomp
      macaddress.empty? ? nil : macaddress
    end

    def self.default_interface
      `#{netstat_command} | /usr/bin/awk  '/^default/{print $6;exit}'`.chomp
    end

    private

    def self.netstat_command
      '/usr/sbin/netstat -rn'
    end

    def self.ifconfig_command
      '/sbin/ifconfig'
    end
  end

  module Windows
    def macaddress
      require 'facter/util/ip/windows'

      adapter = Facter::Util::IP::Windows.get_preferred_ipv4_adapters.first
      adapter ? adapter.MACAddress : nil
    end
    module_function :macaddress
  end
end