class SystemgroupsSet

Public Instance Methods

fetch_all() click to toggle source
# File lib/satops/operator.rb, line 1110
def fetch_all
  sysgroups=[]
  @sat.systemgroup.listAllGroups.each do |sysgroup|
    sysgroups << Systemgroup.new(sysgroup)
  end
  sysgroups
end
include?(arg) click to toggle source
# File lib/satops/operator.rb, line 1118
def include?(arg)
  self.include_name?(arg)
end