# 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