Ansible Collection for Posix
Find a file
softwarefactory-project-zuul[bot] e54b8bf68f
Merge pull request #658 from saito-hideki/release_2.1.0
Release 2.1.0 commit

SUMMARY
Release 2.1.0 commit

Release Plan #149

ISSUE TYPE

Feature Pull Request

COMPONENT NAME

ansible.posix

ADDITIONAL INFORMATION
This will be merged on 17 July if there are no problems

Reviewed-by: Felix Fontein <felix@fontein.de>
Reviewed-by: Andrew Klychkov <aklychko@redhat.com>
2025-07-17 00:01:11 +00:00
.azure-pipelines Merge pull request #654 from saito-hideki/pr/bump_core_version_220 2025-07-10 10:08:07 +09:00
.github Remove skippy callback 2024-09-05 16:08:40 +09:00
changelogs Release 2.1.0 commit 2025-07-16 14:29:10 +09:00
hacking Migrate hacking/cgroup_perf_recap_graph.py (#12) 2020-04-22 23:05:09 -05:00
meta Drop ansible-core 2.14 and set 2.15 minimum version. 2024-09-06 11:17:52 +09:00
plugins Merge pull request #650 from felixfontein/callback 2025-07-10 08:27:42 +09:00
tests Merge pull request #654 from saito-hideki/pr/bump_core_version_220 2025-07-10 10:08:07 +09:00
.ansible-lint Add basic ansible-lint config. 2024-06-07 07:03:56 +02:00
.gitignore Update changelog generation configuration 2020-06-17 15:57:15 +05:30
bindep.txt bindep - install rsync on all EL variants 2023-02-22 20:07:25 -05:00
CHANGELOG.rst Release 2.1.0 commit 2025-07-16 14:29:10 +09:00
codecov.yml refactor to comply with current ansible-lint and sanity guidelines 2023-12-06 17:22:59 -06:00
COPYING Initial commit 2020-03-09 13:15:28 +00:00
galaxy.yml Release 2.1.0 commit 2025-07-16 14:29:10 +09:00
PSF-license.txt Update with actual CPython 3.9.5 license. 2022-05-16 08:00:40 +02:00
README.md [CI] enable integration tests for devel branch 2024-11-06 11:07:13 +09:00
requirements.txt Remove sanity jobs from shippable 2020-06-16 19:46:58 -04:00
shippable.yml refactor to comply with current ansible-lint and sanity guidelines 2023-12-06 17:22:59 -06:00
test-requirements.txt Add support for running ansible-test unit in zuul 2020-06-17 09:34:36 -04:00

ansible.posix

Build Status Run Status

Communication

Description

An Ansible Collection of modules and plugins that target POSIX UNIX/Linux and derivative Operating Systems.

Requirements

  • Python:
    • The Python interpreter version must meet Ansible Core's requirements.
  • Ansible Core:
    • ansible-core 2.15 or later

Installation

Before using this collection, you need to install it with the Ansible Galaxy command-line tool:

ansible-galaxy collection install ansible.posix

You can also include it in a requirements.yml file and install it with ansible-galaxy collection install -r requirements.yml, using the format:

collections:
  - name: ansible.posix

Note that if you install any collections from Ansible Galaxy, they will not be upgraded automatically when you upgrade the Ansible package. To upgrade the collection to the latest available version, run the following command:

ansible-galaxy collection install ansible.posix --upgrade

You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version 1.0.0:

ansible-galaxy collection install ansible.posix:==1.0.0

See using Ansible collections for more details.

For more information about communication, see the Ansible communication guide.

Use Cases

You can see the general use-cases as an example by ansible-doc command like below.

For example, ansible.posix.firewalld module:

ansible-doc ansible.posix.firewalld

Also, if you want to confirm the plugins descriptions, you can follow the following option with ansible-doc command:

For example, ansible.posix.profile_tasks callback plugin:

ansible-doc -t callback ansible.posix.profile_tasks

Testing

The following ansible-core versions have been tested with this collection:

  • ansible-core 2.19 (devel)
  • ansible-core 2.18 (stable) *
  • ansible-core 2.17 (stable)
  • ansible-core 2.16 (stable)
  • ansible-core 2.15 (stable)

Contributing

We welcome community contributions to this collection. For more details, see Contributing to Ansible-maintained collections for complete details.

Support

See Communication section.

Release Notes and Roadmap

See changelog for more details.

This document was written using the following template.

The README has been carefully prepared to cover the community template, but if you find any problems, please file a documentation issue.

License Information

GNU General Public License v3.0 or later.

See COPYING to see the full text.