Class: Specinfra::Helper::DetectOs::Esxi

Inherits:
Specinfra::Helper::DetectOs show all
Defined in:
lib/specinfra/helper/detect_os/esxi.rb

Class Method Summary collapse

Methods inherited from Specinfra::Helper::DetectOs

run_command

Class Method Details

.detectObject



2
3
4
5
6
7
8
9
# File 'lib/specinfra/helper/detect_os/esxi.rb', line 2

def self.detect
  if run_command('vmware -v').success?
    line = run_command('vmware -v').stdout
    if line =~ /VMware ESXi (.*)/
      { :family => 'esxi', :release => $1 }
    end
  end
end