summaryrefslogtreecommitdiff
path: root/lib/ansible/modules
diff options
context:
space:
mode:
authorSandra McCann <samccann@redhat.com>2022-10-28 18:13:54 -0500
committerGitHub <noreply@github.com>2022-10-28 16:13:54 -0700
commit3fc245d3c615d2814af8ffc09b8cb319109bd18d (patch)
treef1dcc2ea577f26ee150d10b19257cc46e04180e9 /lib/ansible/modules
parent70d1b34a9aa03a2d670a5b838928e2a46fd76c64 (diff)
downloadansible-3fc245d3c615d2814af8ffc09b8cb319109bd18d.tar.gz
Backportapalooza 10 27 (#79247)
* managed node requirement amend (#79189) (cherry picked from commit 757efa4a457a20731dcdaa38f86a02e14b446ede) * documentation fix for file module 78988 (#79182) (cherry picked from commit 465480f755b7f4bad72090bbb350c1bd993505ae) * Added link to the Ansible meetup page (#79207) (cherry picked from commit f3f7d442389208ed5b249902c01d7d888f7c0546) * add link to fest videos (#79196) (cherry picked from commit 060f114d8ca8bc4e75780c3a3845a9fffadda7da) * Docs: Typos and edits in collections integration (#79228) (cherry picked from commit 74f55db5c6c1d50773ab22e7016abb0ff18c818a) * fix url for fest VoD banner (#79229) (cherry picked from commit 656d01dd24cf012dbca0fbf25482c0eb47d77256) * Docs: Typos and edits in collections reviews (#79217) (cherry picked from commit fa8dc6b73d6bb4ceab4c51a4033fc774146dbfef) * plugins/lookup/pipe: docs typo fixes (#79222) (cherry picked from commit 0bacea70c4ad73cd7839762dad33924f744aabc8) * collection roles dont support plugins (#79243) (cherry picked from commit 6ee089bc80dff30a9a01165bef4e88f87d91daad) Co-authored-by: prasadpatil49 <51715670+prasadpatil49@users.noreply.github.com> Co-authored-by: VICTORIA JOHNSON <110999245+DrVickie8@users.noreply.github.com> Co-authored-by: Goodness Chris-Ugari <goodnesschrisugari@yahoo.com> Co-authored-by: Kenyon Ralph <kenyon@kenyonralph.com> Co-authored-by: Brian Coca <bcoca@users.noreply.github.com>
Diffstat (limited to 'lib/ansible/modules')
-rw-r--r--lib/ansible/modules/file.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ansible/modules/file.py b/lib/ansible/modules/file.py
index 55489bcda5..150ff6414d 100644
--- a/lib/ansible/modules/file.py
+++ b/lib/ansible/modules/file.py
@@ -15,7 +15,7 @@ version_added: historical
short_description: Manage files and file properties
extends_documentation_fragment: [files, action_common_attributes]
description:
-- Set attributes of files, symlinks or directories.
+- Set attributes of files, directories, or symlinks and their targets.
- Alternatively, remove files, symlinks or directories.
- Many other modules support the same options as the C(file) module - including M(ansible.builtin.copy),
M(ansible.builtin.template), and M(ansible.builtin.assemble).
@@ -72,6 +72,7 @@ options:
follow:
description:
- This flag indicates that filesystem links, if they exist, should be followed.
+ - I(follow=yes) and I(state=link) can modify I(src) when combined with parameters such as I(mode).
- Previous to Ansible 2.5, this was C(no) by default.
type: bool
default: yes