corrected yaml extensions ini setting

(cherry picked from commit 44d2f21e02)
This commit is contained in:
Brian Coca 2017-09-28 22:59:25 -04:00
parent 6945f6d3b2
commit 5de7121941
2 changed files with 3 additions and 2 deletions

View file

@ -66,6 +66,7 @@ Ansible Changes By Release
* removed typo from dig lookup docs
* Updated win_chocolatey example to be clearer around what should be used with become
* Fix for copy module when permissions are changed but the file contents are not ( https://github.com/ansible/ansible/issues/30556 )
* corrected YAML_FILENAME_EXTENSIONS ini setter as key/section were swapped
<a id="2.4"></a>

View file

@ -1557,7 +1557,7 @@ YAML_FILENAME_EXTENSIONS:
env:
- name: ANSIBLE_YAML_FILENAME_EXT
ini:
- section: yaml_valid_extensions
key: defaults
- section: defaults
key: yaml_valid_extensions
type: list
...