From 33d4ba8fa2c09139b31b072fcc8f64afec7ae7fe Mon Sep 17 00:00:00 2001 From: Gleb Popov <6yearold@gmail.com> Date: Wed, 11 Sep 2024 09:05:16 +0000 Subject: [PATCH] file module: Clarify the docs that the force parameter works for hardlinks too (#83913) --- lib/ansible/modules/file.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/file.py b/lib/ansible/modules/file.py index 60f614698b0..ba901404a20 100644 --- a/lib/ansible/modules/file.py +++ b/lib/ansible/modules/file.py @@ -63,9 +63,9 @@ options: force: description: - > - Force the creation of the symlinks in two cases: the source file does + Force the creation of the links in two cases: if the link type is symbolic and the source file does not exist (but will appear later); the destination exists and is a file (so, we need to unlink the - O(path) file and create a symlink to the O(src) file in place of it). + O(path) file and create a link to the O(src) file in place of it). type: bool default: no follow: