Class: Specinfra::Helper::DetectOs::Poky
- Inherits:
-
Specinfra::Helper::DetectOs
- Object
- Specinfra::Helper::DetectOs
- Specinfra::Helper::DetectOs::Poky
- Defined in:
- lib/specinfra/helper/detect_os/poky.rb
Instance Method Summary collapse
Methods inherited from Specinfra::Helper::DetectOs
detect, #initialize, #run_command
Constructor Details
This class inherits a constructor from Specinfra::Helper::DetectOs
Instance Method Details
#detect ⇒ Object
2 3 4 5 6 |
# File 'lib/specinfra/helper/detect_os/poky.rb', line 2 def detect if ( uname = run_command('uname -r').stdout ) && uname =~ /poky/i { :family => 'poky', :release => run_command('cat /etc/version').stdout } end end |