Fixes #462 notice permission denied on authorized_key module SUMMARY As of right now the authorized_key module does not notice on an "absent" if a authorized_keys file is simply not readable to the executing user. I am trying to fix that ISSUE TYPE Bugfix Pull Request COMPONENT NAME authorized_key ADDITIONAL INFORMATION Execute as a user that does not have access to the root users authorized keys file - name: Delete key from root user ansible.posix.authorized_key: state: absent user: root key: ssh-rsa xxxxxxxx - name: Delete key from root user become: true ansible.posix.authorized_key: state: absent user: root key: ssh-rsa xxxxxxxx The one without become will succeed before my change and will fail with a permission denied error after my change. The 2nd task will actually remove a key from root user if become privileges are available for the executing user Reviewed-by: Brian Coca Reviewed-by: Klaas Demter Reviewed-by: Felix Fontein <felix@fontein.de> Reviewed-by: Hideki Saito <saito@fgrep.org> |
||
|---|---|---|
| .azure-pipelines | ||
| .github | ||
| changelogs | ||
| hacking | ||
| meta | ||
| plugins | ||
| tests | ||
| .ansible-lint | ||
| .gitignore | ||
| bindep.txt | ||
| CHANGELOG.rst | ||
| codecov.yml | ||
| COPYING | ||
| galaxy.yml | ||
| PSF-license.txt | ||
| README.md | ||
| requirements.txt | ||
| shippable.yml | ||
| test-requirements.txt | ||
ansible.posix
Communication
- Join the Ansible forum:
- Get Help: get help or help others.
- Social Spaces: gather and interact with fellow enthusiasts.
- News & Announcements: track project-wide announcements including social events.
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.16 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 2.0.0:
ansible-galaxy collection install ansible.posix:==2.0.0
See using Ansible collections for more details.
- The Ansible Bullhorn newsletter: used to announce releases and important changes.
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.20 (devel)
- ansible-core 2.19 (stable) *
- ansible-core 2.18 (stable)
- ansible-core 2.17 (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.
Related Information
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.