diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-03-15 11:28:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 11:28:41 +0100 |
commit | 309802214616b3981a4d2a6b3bdcf4077bd0e062 (patch) | |
tree | 903a9f521c8ef6c61c4556b2d6618e63e14fbba9 | |
parent | setup - virtualization facts add Red Hat vendor (#72876) (diff) | |
download | ansible-309802214616b3981a4d2a6b3bdcf4077bd0e062.tar.xz ansible-309802214616b3981a4d2a6b3bdcf4077bd0e062.zip |
Fix typo in porting_guide_3.rst (#73871)
paramater -> parameter
-rw-r--r-- | docs/docsite/rst/porting_guides/porting_guide_3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/porting_guides/porting_guide_3.rst b/docs/docsite/rst/porting_guides/porting_guide_3.rst index 8f5d8230b5..c3cbe65bf6 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_3.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_3.rst @@ -143,7 +143,7 @@ community.general If you use ansible-base 2.10 or newer and did not install Ansible 3.0.0, but installed (and/or upgraded) community.general manually, you need to make sure to also install ``community.postgresql`` if you are using any of the ``postgresql`` modules. While ansible-base 2.10 or newer can use the redirects that community.general 2.0.0 adds, the collection they point to (community.postgresql) must be installed for them to work. - The Google cloud inventory script ``gce.py`` has been migrated to the ``community.google`` collection. Install the ``community.google`` collection in order to continue using it. -- archive - remove path folder itself when ``remove`` paramater is true (https://github.com/ansible-collections/community.general/issues/1041). +- archive - remove path folder itself when ``remove`` parameter is true (https://github.com/ansible-collections/community.general/issues/1041). - log_plays callback - add missing information to the logs generated by the callback plugin. This changes the log message format (https://github.com/ansible-collections/community.general/pull/442). - passwordstore lookup plugin - now parsing a password store entry as YAML if possible, skipping the first line (which by convention only contains the password and nothing else). If it cannot be parsed as YAML, the old ``key: value`` parser will be used to process the entry. Can break backwards compatibility if YAML formatted code was parsed in a non-YAML interpreted way, e.g. ``foo: [bar, baz]`` will become a list with two elements in the new version, but a string ``'[bar, baz]'`` in the old (https://github.com/ansible-collections/community.general/issues/1673). - pkgng - passing ``name: *`` with ``state: absent`` will no longer remove every installed package from the system. It is now a noop. (https://github.com/ansible-collections/community.general/pull/569). |