modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov 2020-07-13 22:50:31 +03:00 committed by GitHub
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
533 changed files with 2130 additions and 2130 deletions

View file

@ -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
'''