# File lib/handlers/repository.rb, line 90
      def remove(*repo_ids)
        if options.remote?
          require_appliance do |appliance|
            response= appliance.remove_repository(repo_ids)
            say "Removed #{repo_ids.join(", ")}"
          end
        else
          repo_file= RepositoryFile.new
          repo_ids.each {|id| repo_file.push('remove', id)}
          repo_file.save
          say "Marked the following for removal #{repo_ids.join(", ")}"
        end
      end