summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Poindessous <thomas@poindessous.com>2022-12-08 22:24:21 +0100
committerGitHub <noreply@github.com>2022-12-08 16:24:21 -0500
commit6a7fb7d2ab07c5a124ac178929e56b5f6d8d04e5 (patch)
treefa1e8c74a60381aa9fcfccf2313a1c40dd6ec483
parent0f4afd7e6d584c19b7e95fe6682cb159c89925bc (diff)
downloadansible-6a7fb7d2ab07c5a124ac178929e56b5f6d8d04e5.tar.gz
fix: broken link (#79461)
-rw-r--r--lib/ansible/modules/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/command.py b/lib/ansible/modules/command.py
index 778d8a26cf..490c0ca5a9 100644
--- a/lib/ansible/modules/command.py
+++ b/lib/ansible/modules/command.py
@@ -21,7 +21,7 @@ description:
like C("*"), C("<"), C(">"), C("|"), C(";") and C("&") will not work.
Use the M(ansible.builtin.shell) module if you need these features.
- To create C(command) tasks that are easier to read than the ones using space-delimited
- arguments, pass parameters using the C(args) L(task keyword,../reference_appendices/playbooks_keywords.html#task)
+ arguments, pass parameters using the C(args) L(task keyword,https://docs.ansible.com/ansible/latest/reference_appendices/playbooks_keywords.html#task)
or use C(cmd) parameter.
- Either a free form command or C(cmd) parameter is required, see the examples.
- For Windows targets, use the M(ansible.windows.win_command) module instead.