summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSloane Hertel <19572925+s-hertel@users.noreply.github.com>2022-11-29 10:27:08 -0500
committerGitHub <noreply@github.com>2022-11-29 16:27:08 +0100
commit01ff57bdff35e0e97b16caa2c420fe01039d13e1 (patch)
tree9de0fb27c318de93847a0fb890febf959c354dae
parentc33a782a9c1e6d1e6b900c0eed642dfd3defac1c (diff)
downloadansible-01ff57bdff35e0e97b16caa2c420fe01039d13e1.tar.gz
add ansible-galaxy cli documentation for parallel execution (#79433)
* add ansible-galaxy cli documentation for parallel execution Co-authored-by: saranti <tsarantis@proton.me> * Update lib/ansible/cli/galaxy.py * Update lib/ansible/cli/galaxy.py Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua> Co-authored-by: saranti <tsarantis@proton.me> Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
-rwxr-xr-xlib/ansible/cli/galaxy.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/ansible/cli/galaxy.py b/lib/ansible/cli/galaxy.py
index 339094e035..0e2303c714 100755
--- a/lib/ansible/cli/galaxy.py
+++ b/lib/ansible/cli/galaxy.py
@@ -197,7 +197,11 @@ class RoleDistributionServer:
class GalaxyCLI(CLI):
- '''command to manage Ansible roles in shared repositories, the default of which is Ansible Galaxy *https://galaxy.ansible.com*.'''
+ '''Command to manage Ansible roles and collections.
+
+ None of the CLI tools are designed to run concurrently with themselves.
+ Use an external scheduler and/or locking to ensure there are no clashing operations.
+ '''
name = 'ansible-galaxy'