Class: Specinfra::Helper::DetectOs::Alpine

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

Class Method Summary collapse

Methods inherited from Specinfra::Helper::DetectOs

run_command

Class Method Details

.detectObject



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

def self.detect
  if run_command('ls /etc/alpine-release').success?
    release = run_command('cat /etc/alpine-release').stdout
    { :family => 'alpine', :release => release }
  end
end