class Facter::Resolvers::Solaris::DmiSparc
Private Class Methods
exec_prtdiag()
click to toggle source
# File lib/facter/resolvers/solaris/dmi_sparc.rb, line 30 def exec_prtdiag return unless File.executable?('/usr/sbin/prtdiag') Facter::Core::Execution.execute('/usr/sbin/prtdiag', logger: log) end
exec_sneep()
click to toggle source
# File lib/facter/resolvers/solaris/dmi_sparc.rb, line 36 def exec_sneep return unless File.executable?('/usr/sbin/sneep') Facter::Core::Execution.execute('/usr/sbin/sneep', logger: log) end
post_resolve(fact_name)
click to toggle source
# File lib/facter/resolvers/solaris/dmi_sparc.rb, line 11 def post_resolve(fact_name) @fact_list.fetch(fact_name) { read_facts(fact_name) } end
read_facts(fact_name)
click to toggle source
# File lib/facter/resolvers/solaris/dmi_sparc.rb, line 15 def read_facts(fact_name) output = exec_prtdiag return unless output matches = output.match(/System Configuration:\s+(.+?)\s+sun\d+\S+\s+(.+)/)&.captures @fact_list[:manufacturer] = matches[0]&.strip @fact_list[:product_name] = matches[1]&.strip sneep = exec_sneep&.strip @fact_list[:serial_number] = sneep @fact_list[fact_name] end