Sha256: 1f480c25842bf60a662931a82a51cd50bc20d8fe7a491d0f4684e90ae729c6c7
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
# frozen_string_literal: true # Copyright 2018 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::Proxmox::Interfaces extend ActiveSupport::Concern def update(attributes = {}) add_interfaces_to_compute_attributes(attributes) super(attributes) end def add_interfaces_to_compute_attributes(attributes) attributes['compute_attributes']['interfaces_attributes'] = {} attributes['interfaces_attributes'].each { |index,interface_attributes| add_interface_to_compute_attributes(index,interface_attributes,attributes['compute_attributes']['interfaces_attributes']) } end def add_interface_to_compute_attributes(index,interface_attributes,compute_attributes) compute_attributes[index] = {} compute_attributes[index].store('id',interface_attributes['identifier']) compute_attributes[index].store('_delete',interface_attributes['_destroy']) compute_attributes[index].store('macaddr',interface_attributes['mac']) compute_attributes[index].merge!(interface_attributes['compute_attributes'].reject { |k,_v| k == 'id' }) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman_fog_proxmox-0.8.0 | app/models/concerns/host_ext/proxmox/interfaces.rb |