Sha256: b7b70c282f39ad7fc5616a4210bafaa91ca1c91a9bfa82e175961616a844d8fd
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# frozen_string_literal: true # Copyright 2018 Tristan Robert # This file is part of Fog::Proxmox. # Fog::Proxmox is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # Fog::Proxmox is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>. require 'fog/proxmox/compute/models/task' module Fog module Proxmox class Compute # class Tasks Collection of node class Tasks < Fog::Collection model Fog::Proxmox::Compute::Task attribute :node_id def new(new_attributes = {}) super({ node_id: node_id }.merge(new_attributes)) end def all(filters = {}) load service.list_tasks(node_id, filters) end def log(id) log = '' log_array = service.log_task(node_id, id, {}) log_array.each do |line_hash| log += line_hash['t'].to_s + "\n" end log end def get(id) status_details = service.status_task(node_id, id) task_hash = status_details.merge(log: log(id)) task_data = task_hash.merge(node_id: node_id, upid: id) new(task_data) end def wait_for(task_upid) task = get(task_upid) task.wait_for { finished? } message = "Task #{task_upid} failed because #{task.exitstatus}" raise Fog::Errors::Error, message unless task.succeeded? task.succeeded? end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-proxmox-0.14.0 | lib/fog/proxmox/compute/models/tasks.rb |