Class: Specinfra::Helper::DetectOs::Nixos

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

Class Method Summary collapse

Methods inherited from Specinfra::Helper::DetectOs

run_command

Class Method Details

.detectObject



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

def self.detect
  if run_command('ls /var/run/current-system/sw').success?
    { :family => 'nixos', :release => nil }
  end
end