# File lib/genome-lib/virsh.rb, line 37 def list(options={}) defaults = {:all => false} opts = defaults.merge(options) args = [] args << "--all" if opts[:all] parse_list(run_command('list', args)) end