Sha256: dd917e4011ddad4596a20f63dd2594b20eef3d602a45389e66e2977ffb409602
Contents?: true
Size: 528 Bytes
Versions: 35
Compression:
Stored size: 528 Bytes
Contents
# Fact: lsbdistcodename # # Purpose: Return Linux Standard Base information for the host. # # Resolution: # 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(:lsbdistcodename) do confine :kernel => [ :linux, :"gnu/kfreebsd" ] setcode do Facter::Util::Resolution.exec('lsb_release -c -s 2>/dev/null') end end
Version data entries
35 entries across 35 versions & 2 rubygems