mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-20 23:30:22 -07:00
ini_file: Don't report changed=true when removing if nothing is changed. (#4155)
* don't report changed when nothing is removed * add change log * linter happy * Update plugins/modules/files/ini_file.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update changelogs/fragments/4154-ini_file_changed.yml Co-authored-by: Felix Fontein <felix@fontein.de> * add absent idempotency test Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
05c3e0d69f
commit
f527bb61f9
3 changed files with 14 additions and 3 deletions
|
@ -367,9 +367,10 @@ def do_ini(module, filename, section=None, option=None, values=None,
|
|||
section_lines = new_section_lines
|
||||
else:
|
||||
# drop the entire section
|
||||
section_lines = []
|
||||
msg = 'section removed'
|
||||
changed = True
|
||||
if section_lines:
|
||||
section_lines = []
|
||||
msg = 'section removed'
|
||||
changed = True
|
||||
|
||||
# reassemble the ini_lines after manipulation
|
||||
ini_lines = before + section_lines + after
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue