1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

proxmox_nic: set mtu on interface even if it's not virtio (#2505)

* Set mtu on interface whatsoever

* add changelog fragment

* Revert "add changelog fragment"

This reverts commit 5f2f1e7feb.
This commit is contained in:
Amin Vakil 2021-05-14 13:03:30 +04:30 committed by GitHub
parent 054eb90ae5
commit e2dfd42dd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,9 +211,8 @@ def update_nic(module, proxmox, vmid, interface, model, **kwargs):
config_provided += ',link_down=1'
if kwargs['mtu']:
if model == 'virtio':
config_provided += ",mtu={0}".format(kwargs['mtu'])
else:
config_provided += ",mtu={0}".format(kwargs['mtu'])
if model != 'virtio':
module.warn(
'Ignoring MTU for nic {0} on VM with vmid {1}, '
'model should be set to \'virtio\': '.format(interface, vmid))