mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
nictagadm: don't call is_valid_mac when etherstub is true (#11589)
* nictagadm: don't call is_valid_mac when etherstub is true * Add changelog fragment * update changelog fragment * Shorten changelog fragement * Update changelogs/fragments/nictagadm-etherstub-nonetype-bugfix.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
@@ -193,7 +193,7 @@ def main():
|
||||
state=nictag.state,
|
||||
)
|
||||
|
||||
if not nictag.is_valid_mac():
|
||||
if not nictag.etherstub and not nictag.is_valid_mac():
|
||||
module.fail_json(msg="Invalid MAC Address Value", name=nictag.name, mac=nictag.mac, etherstub=nictag.etherstub)
|
||||
|
||||
if nictag.state == "absent":
|
||||
|
||||
Reference in New Issue
Block a user