Sha256: 7680fc31b4827974d8dfc85bc93706d826e94dc3e108283b5fbcd1539d7fb6c3
Contents?: true
Size: 578 Bytes
Versions: 99
Compression:
Stored size: 578 Bytes
Contents
# Fact: lsbdistrelease # # Purpose: Return Linux Standard Base information for the host. # # Resolution: # Uses the lsbdistrelease key of the os structured fact, which itself # uses the `lsb_release` system command. # # Caveats: # Only works on Linux (and the kfreebsd derivative) systems. # Requires the `lsb_release` program, which may not be installed by default. # Also is as only as accurate as that program outputs. Facter.add(:lsbdistrelease) do confine do !Facter.value(:os)["lsb"].nil? end setcode { Facter.value("os")["lsb"]["distrelease"] } end
Version data entries
99 entries across 99 versions & 2 rubygems