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