Sha256: 7d3854116aab6c461c6ef31f475b3feabf53dc7729736862fc70f952f4b5d588

Contents?: true

Size: 1.1 KB

Versions: 9

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

# Copyright 2021 Tristan Robert

# This file is part of ForemanFogProxmox.

# ForemanFogProxmox 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.

# ForemanFogProxmox 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 ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>.

module HostExt
  module Proxmox
    module ForVm
      extend ActiveSupport::Concern
      module ClassMethods
        def for_vm_uuid(cr, vm)
          uuid = vm&.identity
          uuid = cr.id.to_s + '_' + vm&.identity.to_s if cr.instance_of?(ForemanFogProxmox::Proxmox)
          where(:compute_resource_id => cr.id, :uuid => uuid)
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
foreman_fog_proxmox-0.16.3 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.16.2 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.16.1 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.16.0 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.15.1 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.15.0 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.14.3 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.14.2 app/models/concerns/host_ext/proxmox/for_vm.rb
foreman_fog_proxmox-0.14.1 app/models/concerns/host_ext/proxmox/for_vm.rb