mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-03 06:49:10 -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
|
@ -67,40 +67,40 @@ author: "Franck Cuny (@fcuny)"
|
|||
|
||||
EXAMPLES = '''
|
||||
- name: Install Dancer perl package
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: Dancer
|
||||
|
||||
- name: Install version 0.99_05 of the Plack perl package
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: MIYAGAWA/Plack-0.99_05.tar.gz
|
||||
|
||||
- name: Install Dancer into the specified locallib
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: Dancer
|
||||
locallib: /srv/webapps/my_app/extlib
|
||||
|
||||
- name: Install perl dependencies from local directory
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
from_path: /srv/webapps/my_app/src/
|
||||
|
||||
- name: Install Dancer perl package without running the unit tests in indicated locallib
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: Dancer
|
||||
notest: True
|
||||
locallib: /srv/webapps/my_app/extlib
|
||||
|
||||
- name: Install Dancer perl package from a specific mirror
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: Dancer
|
||||
mirror: 'http://cpan.cpantesters.org/'
|
||||
|
||||
- name: Install Dancer perl package into the system root path
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: Dancer
|
||||
system_lib: yes
|
||||
|
||||
- name: Install Dancer if it is not already installed OR the installed version is older than version 1.0
|
||||
cpanm:
|
||||
community.general.cpanm:
|
||||
name: Dancer
|
||||
version: '1.0'
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue