From 1a4814de5300a1aa3a70332fd136c675b25d99a9 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Wed, 26 May 2021 07:29:19 +0200 Subject: [PATCH] ini_file - added note in documentation for utf-8 bom (#2599) (#2620) * added note in documentation for utf-8 bom * Update plugins/modules/files/ini_file.py Co-authored-by: Felix Fontein Co-authored-by: Felix Fontein (cherry picked from commit aa74cf4d61b1e22e55ca1fa0b0d18744da493b4f) Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --- plugins/modules/files/ini_file.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/modules/files/ini_file.py b/plugins/modules/files/ini_file.py index ea857cefa9..d318d04d57 100644 --- a/plugins/modules/files/ini_file.py +++ b/plugins/modules/files/ini_file.py @@ -79,6 +79,7 @@ options: notes: - While it is possible to add an I(option) without specifying a I(value), this makes no sense. - As of Ansible 2.3, the I(dest) option has been changed to I(path) as default, but I(dest) still works as well. + - As of community.general 3.2.0, UTF-8 BOM markers are discarded when reading files. author: - Jan-Piet Mens (@jpmens) - Ales Nosek (@noseka1)