Skip to content

Commit

Permalink
Removed upcase
Browse files Browse the repository at this point in the history
  • Loading branch information
btoneill committed Oct 9, 2024
1 parent 05eeaef commit cd3d455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/foreman_fog_proxmox/proxmox_interfaces.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def dhcp?(nic_compute_attributes, v6 = false)
def set_mac(nic_compute_attributes, mac, type)
mac_attr_name = { 'qemu' => :macaddr, 'lxc' => :hwaddr }
mac_key = mac_attr_name[type] || 'mac'
nic_compute_attributes[mac_key] = Net::Validations.normalize_mac(mac).upcase
nic_compute_attributes[mac_key] = Net::Validations.normalize_mac(mac)
end

def host_interfaces_attrs(host)
Expand Down

0 comments on commit cd3d455

Please sign in to comment.