Sha256: 936f707391f5ddfa479c708ff20e6534976ad2908c97e21bd2347ef5b8260c08
Contents?: true
Size: 558 Bytes
Versions: 99
Compression:
Stored size: 558 Bytes
Contents
# Fact: lsbdistid # # Purpose: Return Linux Standard Base information for the host. # # Resolution: # Uses the lsbdistid 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(:lsbdistid) do confine do !Facter.value(:os)["lsb"].nil? end setcode { Facter.value("os")["lsb"]["distid"] } end
Version data entries
99 entries across 99 versions & 2 rubygems