在Ruby中检测Linux发行版/平台

我可以通过以下几种方式检查运行我的Ruby代码的平台的操作系统: RUBY_PLATFORM:https://stackoverflow.com/a/171011/462015 RbConfig :: CONFIG [‘host_os’]:https://stackoverflow.com/a/13586108/462015是...

我可以通过以下几种方式检查运行我的Ruby代码的平台的操作系统:

> RUBY_PLATFORM:https://stackoverflow.com/a/171011/462015
> RbConfig :: CONFIG [‘host_os’]:https://stackoverflow.com/a/13586108/462015

是否有可能知道Linux发行版正在运行?例如基于Debian或基于Red Hat的发行版.

解决方法:

正如评论部分中所指出的那样,似乎没有确定“以每种分配方式工作”的方式来做到这一点.接下来是我用来检测脚本运行的环境类型:

def linux_variant
  r = { :distro => nil, :family => nil }

  if File.exists?('/etc/lsb-release')
    File.open('/etc/lsb-release', 'r').read.each_line do |line|
      r = { :distro => $1 } if line =~ /^DISTRIB_ID=(.*)/
    end
  end

  if File.exists?('/etc/debian_version')
    r[:distro] = 'Debian' if r[:distro].nil?
    r[:family] = 'Debian' if r[:variant].nil?
  elsif File.exists?('/etc/redhat-release') or File.exists?('/etc/centos-release')
    r[:family] = 'RedHat' if r[:family].nil?
    r[:distro] = 'CentOS' if File.exists?('/etc/centos-release')
  elsif File.exists?('/etc/SuSE-release')
    r[:distro] = 'SLES' if r[:distro].nil?
  end

  return r
end

这不是处理地球上每个GNU / Linux发行版的完整解决方案.实际上远非如此.例如,它不区分OpenSUSE和SUSE Linux Enterprise Server,尽管它们是两个完全不同的野兽.此外,即使只有一些发行版,它也是一个意大利面条.但它可能是一个人可能能够建立的东西.

您可以从Facter的 source code中找到更完整的分布检测示例,其中除了其他之外,还用于将事实提供给配置管理系统Puppet.

本文标题为:在Ruby中检测Linux发行版/平台

基础教程推荐