class Specinfra::Command::Ubuntu::Base::Port

Public Class Methods

create(os_info=nil) click to toggle source
# File lib/specinfra/command/ubuntu/base/port.rb, line 3
def create(os_info=nil)
  if (os_info || os)[:release].to_i < 18
    self
  else
    Specinfra::Command::Ubuntu::V18::Port
  end
end