mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 23:44:00 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -50,24 +50,24 @@ options:
|
|||
|
||||
EXAMPLES = r'''
|
||||
- name: Install pear package
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: Net_URL2
|
||||
state: present
|
||||
|
||||
- name: Install pecl package
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: pecl/json_post
|
||||
state: present
|
||||
|
||||
- name: Install pecl package with expected prompt
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: pecl/apcu
|
||||
state: present
|
||||
prompts:
|
||||
- (.*)Enable internal debugging in APCu \[no\]
|
||||
|
||||
- name: Install pecl package with expected prompt and an answer
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: pecl/apcu
|
||||
state: present
|
||||
prompts:
|
||||
|
@ -77,7 +77,7 @@ EXAMPLES = r'''
|
|||
Prompts will be processed on the same order as the packages order.
|
||||
If there is more prompts than packages, packages without prompts will be installed without any prompt expected.
|
||||
If there is more packages than prompts, additionnal prompts will be ignored.
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: pecl/gnupg, pecl/apcu
|
||||
state: present
|
||||
prompts:
|
||||
|
@ -88,7 +88,7 @@ EXAMPLES = r'''
|
|||
Prompts will be processed on the same order as the packages order.
|
||||
If there is more prompts than packages, packages without prompts will be installed without any prompt expected.
|
||||
If there is more packages than prompts, additionnal prompts will be ignored.
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: pecl/gnupg, pecl/apcu
|
||||
state: present
|
||||
prompts:
|
||||
|
@ -96,12 +96,12 @@ EXAMPLES = r'''
|
|||
- (.*)Enable internal debugging in APCu \[no\]: "yes"
|
||||
|
||||
- name: Upgrade package
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: Net_URL2
|
||||
state: latest
|
||||
|
||||
- name: Remove packages
|
||||
pear:
|
||||
community.general.pear:
|
||||
name: Net_URL2,pecl/json_post
|
||||
state: absent
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue