summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/general/plugins/modules/alternatives.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-18 05:52:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-18 05:52:27 +0000
commit3b0807ad7b283c46c21862eb826dcbb4ad04e5e2 (patch)
tree6461ea75f03eca87a5a90c86c3c9a787a6ad037e /ansible_collections/community/general/plugins/modules/alternatives.py
parentAdding debian version 7.7.0+dfsg-3. (diff)
downloadansible-3b0807ad7b283c46c21862eb826dcbb4ad04e5e2.tar.xz
ansible-3b0807ad7b283c46c21862eb826dcbb4ad04e5e2.zip
Merging upstream version 9.4.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/community/general/plugins/modules/alternatives.py')
-rw-r--r--ansible_collections/community/general/plugins/modules/alternatives.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/ansible_collections/community/general/plugins/modules/alternatives.py b/ansible_collections/community/general/plugins/modules/alternatives.py
index 97d4f51fb..0d1b1e8cb 100644
--- a/ansible_collections/community/general/plugins/modules/alternatives.py
+++ b/ansible_collections/community/general/plugins/modules/alternatives.py
@@ -44,21 +44,21 @@ options:
description:
- The path to the symbolic link that should point to the real executable.
- This option is always required on RHEL-based distributions. On Debian-based distributions this option is
- required when the alternative I(name) is unknown to the system.
+ required when the alternative O(name) is unknown to the system.
type: path
priority:
description:
- - The priority of the alternative. If no priority is given for creation C(50) is used as a fallback.
+ - The priority of the alternative. If no priority is given for creation V(50) is used as a fallback.
type: int
state:
description:
- - C(present) - install the alternative (if not already installed), but do
+ - V(present) - install the alternative (if not already installed), but do
not set it as the currently selected alternative for the group.
- - C(selected) - install the alternative (if not already installed), and
+ - V(selected) - install the alternative (if not already installed), and
set it as the currently selected alternative for the group.
- - C(auto) - install the alternative (if not already installed), and
+ - V(auto) - install the alternative (if not already installed), and
set the group to auto mode. Added in community.general 5.1.0.
- - C(absent) - removes the alternative. Added in community.general 5.1.0.
+ - V(absent) - removes the alternative. Added in community.general 5.1.0.
choices: [ present, selected, auto, absent ]
default: selected
type: str