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/partitions/openbsd.rb
module Facter::Util::Partitions
  module OpenBSD
    def self.list
      Facter::Core::Execution.exec('df').scan(/\/dev\/(\S+)/).flatten
    end

    # On OpenBSD partitions don't have a UUID; disks have DUID but that's not
    # compatible.
    def self.uuid(partition)
      nil
    end

    def self.mount(partition)
      scan_mount(/\/dev\/#{partition}\son\s(\S+)/)
    end

    # Reported size is in 1K blocks
    def self.size(partition)
      scan_df(/\/dev\/#{partition}\s+(\S+)/)
    end

    def self.filesystem(partition)
      scan_mount(/\/dev\/#{partition}\son\s\S+\stype\s(\S+)/)
    end
   
    # On OpenBSD there are no labels for partitions
    def self.label(partition)
      nil
    end

    private
    def self.scan_mount(scan_regex)
      Facter::Core::Execution.exec('mount').scan(scan_regex).flatten.first
    end

    def self.scan_df(scan_regex)
      Facter::Core::Execution.exec('df -k').scan(scan_regex).flatten.first
    end
  end
end