Method: OffTheGrid::SubmitHost.list

Defined in:
lib/off_the_grid/submit_host.rb

.listObject

Get the list of SGE submit hosts



5
6
7
# File 'lib/off_the_grid/submit_host.rb', line 5

def self.list
  `qconf -ss`.chomp.split("\n").sort.collect { |name| new(name) }
end