mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 15:45:20 +01:00
Prepare 1.1.1 release
Run add_docs.py Run antsibull-changelog; backfill for prior releases Bump release in galaxy.yml Add .keep to changelogs/fragments so directory is not deleted if `keep_fragments` is ever set to False.
This commit is contained in:
parent
f68cec59e7
commit
e5e36d3c7b
14 changed files with 1561 additions and 1410 deletions
73
CHANGELOG.rst
Normal file
73
CHANGELOG.rst
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
===========================
|
||||||
|
ansible.posix Release Notes
|
||||||
|
===========================
|
||||||
|
|
||||||
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v1.1.1
|
||||||
|
======
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix synchronize to work with renamed docker and buildah connection plugins.
|
||||||
|
|
||||||
|
v1.1.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- firewalld - add firewalld module to ansible.posix collection
|
||||||
|
|
||||||
|
v1.0.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Bootstrap Collection (https://github.com/ansible-collections/ansible.posix/pull/1).
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- CI should use devel (https://github.com/ansible-collections/ansible.posix/pull/6).
|
||||||
|
- Enable tests for at, patch and synchronize modules (https://github.com/ansible-collections/ansible.posix/pull/5).
|
||||||
|
- Enabled tags in galaxy.yml (https://github.com/ansible-collections/ansible.posix/issues/18).
|
||||||
|
- Migrate hacking/cgroup_perf_recap_graph.py to this collection, since the cgroup_perf_recap callback lives here.
|
||||||
|
- Remove license key from galaxy.yml.
|
||||||
|
- Remove sanity jobs from shippable (https://github.com/ansible-collections/ansible.posix/pull/43).
|
||||||
|
- Removed ANSIBLE_METADATA from all the modules.
|
||||||
|
- Revert "Enable at, patch and synchronize tests (https://github.com/ansible-collections/ansible.posix/pull/5)".
|
||||||
|
- Update EXAMPLES section in modules to use FQCN.
|
||||||
|
- Update README.md (https://github.com/ansible-collections/ansible.posix/pull/4/).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Allow unsetting existing environment vars via environment by specifying a null value (https://github.com/ansible/ansible/pull/68236).
|
||||||
|
- Mount - Handle remount with new options (https://github.com/ansible/ansible/issues/59460).
|
||||||
|
- Profile_tasks - result was a odict_items which is not subscriptable, so the slicing was failing (https://github.com/ansible/ansible/issues/59059).
|
||||||
|
- Revert "mount - Check if src exists before mounted (ansible/ansible#61752)".
|
||||||
|
- Typecast results before use in profile_tasks callback (https://github.com/ansible/ansible/issues/69563).
|
||||||
|
- authorized_keys - Added FIDO2 security keys (https://github.com/ansible-collections/ansible.posix/issues/17).
|
||||||
|
- authorized_keys - fix inconsistent return value for check mode (https://github.com/ansible-collections/ansible.posix/issues/37)
|
||||||
|
- json callback - Fix host result to task references in the resultant JSON output for non-lockstep strategy plugins such as free (https://github.com/ansible/ansible/issues/65931)
|
||||||
|
- mount - fix issues with ismount module_util pathing for Ansible 2.9 (fixes https://github.com/ansible-collections/ansible.posix/issues/21)
|
||||||
|
- patch - fix FQCN usage for action plugin (https://github.com/ansible-collections/ansible.posix/issues/11)
|
||||||
|
- selinux - add missing configuration keys for /etc/selinux/config (https://github.com/ansible-collections/ansible.posix/issues/23)
|
||||||
|
- synchronize - fix FQCN usage for action plugin (https://github.com/ansible-collections/ansible.posix/issues/11)
|
||||||
|
|
||||||
|
New Modules
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- acl - Set and retrieve file ACL information.
|
||||||
|
- at - Schedule the execution of a command or script file via the at command
|
||||||
|
- authorized_key - Adds or removes an SSH authorized key
|
||||||
|
- mount - Control active and configured mount points
|
||||||
|
- patch - Apply patch files using the GNU patch tool
|
||||||
|
- seboolean - Toggles SELinux booleans
|
||||||
|
- selinux - Change policy and state of SELinux
|
||||||
|
- synchronize - A wrapper around rsync to make common tasks in your playbooks quick and easy
|
||||||
|
- sysctl - Manage entries in sysctl.conf.
|
||||||
102
changelogs/changelog.yaml
Normal file
102
changelogs/changelog.yaml
Normal file
|
|
@ -0,0 +1,102 @@
|
||||||
|
ancestor: null
|
||||||
|
releases:
|
||||||
|
1.0.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- Allow unsetting existing environment vars via environment by specifying a
|
||||||
|
null value (https://github.com/ansible/ansible/pull/68236).
|
||||||
|
- Mount - Handle remount with new options (https://github.com/ansible/ansible/issues/59460).
|
||||||
|
- Profile_tasks - result was a odict_items which is not subscriptable, so the
|
||||||
|
slicing was failing (https://github.com/ansible/ansible/issues/59059).
|
||||||
|
- Revert "mount - Check if src exists before mounted (ansible/ansible#61752)".
|
||||||
|
- Typecast results before use in profile_tasks callback (https://github.com/ansible/ansible/issues/69563).
|
||||||
|
- authorized_keys - Added FIDO2 security keys (https://github.com/ansible-collections/ansible.posix/issues/17).
|
||||||
|
- authorized_keys - fix inconsistent return value for check mode (https://github.com/ansible-collections/ansible.posix/issues/37)
|
||||||
|
- json callback - Fix host result to task references in the resultant JSON output
|
||||||
|
for non-lockstep strategy plugins such as free (https://github.com/ansible/ansible/issues/65931)
|
||||||
|
- mount - fix issues with ismount module_util pathing for Ansible 2.9 (fixes
|
||||||
|
https://github.com/ansible-collections/ansible.posix/issues/21)
|
||||||
|
- patch - fix FQCN usage for action plugin (https://github.com/ansible-collections/ansible.posix/issues/11)
|
||||||
|
- selinux - add missing configuration keys for /etc/selinux/config (https://github.com/ansible-collections/ansible.posix/issues/23)
|
||||||
|
- synchronize - fix FQCN usage for action plugin (https://github.com/ansible-collections/ansible.posix/issues/11)
|
||||||
|
major_changes:
|
||||||
|
- Bootstrap Collection (https://github.com/ansible-collections/ansible.posix/pull/1).
|
||||||
|
minor_changes:
|
||||||
|
- CI should use devel (https://github.com/ansible-collections/ansible.posix/pull/6).
|
||||||
|
- Enable tests for at, patch and synchronize modules (https://github.com/ansible-collections/ansible.posix/pull/5).
|
||||||
|
- Enabled tags in galaxy.yml (https://github.com/ansible-collections/ansible.posix/issues/18).
|
||||||
|
- Migrate hacking/cgroup_perf_recap_graph.py to this collection, since the cgroup_perf_recap
|
||||||
|
callback lives here.
|
||||||
|
- Remove license key from galaxy.yml.
|
||||||
|
- Remove sanity jobs from shippable (https://github.com/ansible-collections/ansible.posix/pull/43).
|
||||||
|
- Removed ANSIBLE_METADATA from all the modules.
|
||||||
|
- Revert "Enable at, patch and synchronize tests (https://github.com/ansible-collections/ansible.posix/pull/5)".
|
||||||
|
- Update EXAMPLES section in modules to use FQCN.
|
||||||
|
- Update README.md (https://github.com/ansible-collections/ansible.posix/pull/4/).
|
||||||
|
fragments:
|
||||||
|
- 11-action-plugins-use-fqcn.yml
|
||||||
|
- 12_migrate_cgroup_perf_recap_graph.yml
|
||||||
|
- 14_mount_option.yml
|
||||||
|
- 15_profile_tasks.yml
|
||||||
|
- 17_authorized_keys.yml
|
||||||
|
- 19_enable_tags.yml
|
||||||
|
- 21-mount-module_util-routing-issue.yml
|
||||||
|
- 23-selinux-doesnt-create-missing-config-keys.yml
|
||||||
|
- 25_ansible_metadata.yml
|
||||||
|
- 26_profile_tasks_doc.yml
|
||||||
|
- 27_update_examples.yml
|
||||||
|
- 33_mount.yml
|
||||||
|
- 35_disable_tests.yml
|
||||||
|
- 37-authorized_keys-inconsistent-check-mode-values.yml
|
||||||
|
- 39_remove_license.yml
|
||||||
|
- 43_remove_shippable.yml
|
||||||
|
- 4_update_readme.yml
|
||||||
|
- 5_enable_tests.yml
|
||||||
|
- 65931-json-callback-non-lockstep-output.yml
|
||||||
|
- 6_test_devel.yml
|
||||||
|
- 7_env.yml
|
||||||
|
- initial_commit.yaml
|
||||||
|
modules:
|
||||||
|
- description: Set and retrieve file ACL information.
|
||||||
|
name: acl
|
||||||
|
namespace: ''
|
||||||
|
- description: Schedule the execution of a command or script file via the at command
|
||||||
|
name: at
|
||||||
|
namespace: ''
|
||||||
|
- description: Adds or removes an SSH authorized key
|
||||||
|
name: authorized_key
|
||||||
|
namespace: ''
|
||||||
|
- description: Control active and configured mount points
|
||||||
|
name: mount
|
||||||
|
namespace: ''
|
||||||
|
- description: Apply patch files using the GNU patch tool
|
||||||
|
name: patch
|
||||||
|
namespace: ''
|
||||||
|
- description: Toggles SELinux booleans
|
||||||
|
name: seboolean
|
||||||
|
namespace: ''
|
||||||
|
- description: Change policy and state of SELinux
|
||||||
|
name: selinux
|
||||||
|
namespace: ''
|
||||||
|
- description: A wrapper around rsync to make common tasks in your playbooks quick
|
||||||
|
and easy
|
||||||
|
name: synchronize
|
||||||
|
namespace: ''
|
||||||
|
- description: Manage entries in sysctl.conf.
|
||||||
|
name: sysctl
|
||||||
|
namespace: ''
|
||||||
|
release_date: '2020-06-19'
|
||||||
|
1.1.0:
|
||||||
|
changes:
|
||||||
|
minor_changes:
|
||||||
|
- firewalld - add firewalld module to ansible.posix collection
|
||||||
|
fragments:
|
||||||
|
- firewalld_migration.yml
|
||||||
|
release_date: '2020-07-15'
|
||||||
|
1.1.1:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- Fix synchronize to work with renamed docker and buildah connection plugins.
|
||||||
|
fragments:
|
||||||
|
- 74_synchronize_docker.yml
|
||||||
|
release_date: '2020-09-02'
|
||||||
0
changelogs/fragments/.keep
Normal file
0
changelogs/fragments/.keep
Normal file
|
|
@ -135,7 +135,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">path</span>
|
<span style="color: purple">path</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -260,7 +261,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Grant user Joe read access to a file
|
- name: Grant user Joe read access to a file
|
||||||
ansible.posix.acl:
|
ansible.posix.acl:
|
||||||
path: /etc/foo.conf
|
path: /etc/foo.conf
|
||||||
|
|
@ -298,7 +298,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Return Values
|
Return Values
|
||||||
-------------
|
-------------
|
||||||
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this module:
|
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this module:
|
||||||
|
|
@ -341,5 +340,3 @@ Authors
|
||||||
|
|
||||||
- Brian Coca (@bcoca)
|
- Brian Coca (@bcoca)
|
||||||
- Jérémie Astori (@astorije)
|
- Jérémie Astori (@astorije)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">integer</span>
|
<span style="color: purple">integer</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -130,7 +131,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
||||||
|
|
@ -155,7 +157,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Schedule a command to execute in 20 minutes as root
|
- name: Schedule a command to execute in 20 minutes as root
|
||||||
ansible.posix.at:
|
ansible.posix.at:
|
||||||
command: ls -d / >/dev/null
|
command: ls -d / >/dev/null
|
||||||
|
|
@ -177,7 +178,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -186,5 +186,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- Richard Isaacson (@risaacson)
|
- Richard Isaacson (@risaacson)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -185,7 +186,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -226,7 +228,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Set authorized key taken from file
|
- name: Set authorized key taken from file
|
||||||
ansible.posix.authorized_key:
|
ansible.posix.authorized_key:
|
||||||
user: charlie
|
user: charlie
|
||||||
|
|
@ -285,7 +286,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Return Values
|
Return Values
|
||||||
-------------
|
-------------
|
||||||
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this module:
|
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this module:
|
||||||
|
|
@ -472,5 +472,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- Ansible Core Team
|
- Ansible Core Team
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -186,6 +186,7 @@ Parameters
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div>Rich rule to add/remove to/from firewalld.</div>
|
<div>Rich rule to add/remove to/from firewalld.</div>
|
||||||
|
<div>See <a href='https://firewalld.org/documentation/man-pages/firewalld.richlanguage.html'>Syntax for firewalld rich language rules</a>.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -226,7 +227,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
||||||
|
|
@ -296,7 +298,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: permit traffic in default zone for https service
|
- name: permit traffic in default zone for https service
|
||||||
ansible.posix.firewalld:
|
ansible.posix.firewalld:
|
||||||
service: https
|
service: https
|
||||||
|
|
@ -370,7 +371,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -379,5 +379,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- Adam Miller (@maxamillion)
|
- Adam Miller (@maxamillion)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -165,7 +165,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">path</span>
|
<span style="color: purple">path</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -198,7 +199,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
||||||
|
|
@ -235,7 +237,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
# Before 2.3, option 'name' was used instead of 'path'
|
# Before 2.3, option 'name' was used instead of 'path'
|
||||||
- name: Mount DVD read-only
|
- name: Mount DVD read-only
|
||||||
ansible.posix.mount:
|
ansible.posix.mount:
|
||||||
|
|
@ -298,7 +299,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -308,5 +308,3 @@ Authors
|
||||||
|
|
||||||
- Ansible Core Team
|
- Ansible Core Team
|
||||||
- Seth Vidal (@skvidal)
|
- Seth Vidal (@skvidal)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -151,7 +151,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">path</span>
|
<span style="color: purple">path</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -213,7 +214,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Apply patch to one file
|
- name: Apply patch to one file
|
||||||
ansible.posix.patch:
|
ansible.posix.patch:
|
||||||
src: /tmp/index.html.patch
|
src: /tmp/index.html.patch
|
||||||
|
|
@ -234,7 +234,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -244,5 +243,3 @@ Authors
|
||||||
|
|
||||||
- Jakub Jirutka (@jirutka)
|
- Jakub Jirutka (@jirutka)
|
||||||
- Luis Alberto Perez Lazaro (@luisperlaz)
|
- Luis Alberto Perez Lazaro (@luisperlaz)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">-</span>
|
<span style="color: purple">-</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -100,7 +101,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">boolean</span>
|
<span style="color: purple">boolean</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
||||||
|
|
@ -129,7 +131,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Set httpd_can_network_connect flag on and keep it persistent across reboots
|
- name: Set httpd_can_network_connect flag on and keep it persistent across reboots
|
||||||
ansible.posix.seboolean:
|
ansible.posix.seboolean:
|
||||||
name: httpd_can_network_connect
|
name: httpd_can_network_connect
|
||||||
|
|
@ -139,7 +140,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -148,5 +148,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- Stephen Fromm (@sfromm)
|
- Stephen Fromm (@sfromm)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">-</span>
|
<span style="color: purple">-</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
<ul style="margin: 0; padding: 0"><b>Choices:</b>
|
||||||
|
|
@ -104,7 +105,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Enable SELinux
|
- name: Enable SELinux
|
||||||
ansible.posix.selinux:
|
ansible.posix.selinux:
|
||||||
policy: targeted
|
policy: targeted
|
||||||
|
|
@ -121,7 +121,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Return Values
|
Return Values
|
||||||
-------------
|
-------------
|
||||||
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this module:
|
Common return values are documented `here <https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values>`_, the following are the fields unique to this module:
|
||||||
|
|
@ -231,5 +230,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- Derek Carter (@goozbach) <goozbach@friocorte.com>
|
- Derek Carter (@goozbach) <goozbach@friocorte.com>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -452,7 +453,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -560,7 +562,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
- name: Synchronization of src on the control machine to dest on the remote hosts
|
- name: Synchronization of src on the control machine to dest on the remote hosts
|
||||||
ansible.posix.synchronize:
|
ansible.posix.synchronize:
|
||||||
src: some/relative/path
|
src: some/relative/path
|
||||||
|
|
@ -689,7 +690,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -698,5 +698,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- Timothy Appnel (@tima)
|
- Timothy Appnel (@tima)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,8 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">-</span>
|
<span style="color: purple">-</span>
|
||||||
/ <span style="color: red">required</span> </div>
|
/ <span style="color: red">required</span>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
</td>
|
</td>
|
||||||
|
|
@ -168,7 +169,6 @@ Examples
|
||||||
|
|
||||||
.. code-block:: yaml+jinja
|
.. code-block:: yaml+jinja
|
||||||
|
|
||||||
|
|
||||||
# Set vm.swappiness to 5 in /etc/sysctl.conf
|
# Set vm.swappiness to 5 in /etc/sysctl.conf
|
||||||
- ansible.posix.sysctl:
|
- ansible.posix.sysctl:
|
||||||
name: vm.swappiness
|
name: vm.swappiness
|
||||||
|
|
@ -205,7 +205,6 @@ Examples
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Status
|
Status
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
@ -214,5 +213,3 @@ Authors
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
- David CHANIAL (@davixx) <david.chanial@gmail.com>
|
- David CHANIAL (@davixx) <david.chanial@gmail.com>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: ansible
|
namespace: ansible
|
||||||
name: posix
|
name: posix
|
||||||
version: 1.1.0
|
version: 1.1.1
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible (github.com/ansible)
|
- Ansible (github.com/ansible)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue