mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix a potential issue with updating interfaces (#50464)
This commit is contained in:
parent
6bc5d4dd8e
commit
0846ea1fd3
1 changed files with 3 additions and 3 deletions
|
@ -297,11 +297,11 @@ def main():
|
|||
if key not in IFPROPS_MAPPING:
|
||||
module.warn("Property '{0}' is not a valid system property.".format(key))
|
||||
if not system or system['interfaces'][device][IFPROPS_MAPPING[key]] != value:
|
||||
interface_properties['{0}-{1}'.format(key, device)] = value
|
||||
result['changed'] = True
|
||||
interface_properties['{0}-{1}'.format(key, device)] = value
|
||||
|
||||
if interface_properties:
|
||||
if result['changed'] is True:
|
||||
conn.modify_system(system_id, "modify_interface", interface_properties, token)
|
||||
result['changed'] = True
|
||||
|
||||
# Only save when the entry was changed
|
||||
if not module.check_mode and result['changed']:
|
||||
|
|
Loading…
Reference in a new issue