Class: Facts::Linux::SystemUptime::Uptime
- Inherits:
 - 
      Object
      
        
- Object
 - Facts::Linux::SystemUptime::Uptime
 
 
- Defined in:
 - lib/facter/facts/linux/system_uptime/uptime.rb
 
Constant Summary collapse
- FACT_NAME =
 'system_uptime.uptime'- ALIASES =
 'uptime'
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
      10 11 12 13 14 15 16 17 18 19 20  | 
    
      # File 'lib/facter/facts/linux/system_uptime/uptime.rb', line 10 def call_the_resolver hypervisors = Facter::Resolvers::Containers.resolve(:hypervisor) fact_value = if hypervisors && hypervisors[:docker] Facter::Resolvers::Linux::DockerUptime.resolve(:uptime) else Facter::Resolvers::Uptime.resolve(:uptime) end [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)] end  |