mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
* Fix #22130 (ini_file crash when destination file don't exists or is empty)
This commit is contained in:
committed by
Toshio Kuratomi
parent
61288b14fd
commit
22d657d3c7
@@ -176,6 +176,10 @@ def do_ini(module, filename, section=None, option=None, value=None,
|
||||
|
||||
changed = False
|
||||
|
||||
# ini file could be empty
|
||||
if not ini_lines:
|
||||
ini_lines.append('\n')
|
||||
|
||||
# last line of file may not contain a trailing newline
|
||||
if ini_lines[-1] == "" or ini_lines[-1][-1] != '\n':
|
||||
ini_lines[-1] += '\n'
|
||||
|
||||
Reference in New Issue
Block a user