mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Change example syntax on easy_install module
This commit is contained in:
@@ -90,10 +90,14 @@ author: "Matt Wright (@mattupstate)"
|
|||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Examples from Ansible Playbooks
|
# Examples from Ansible Playbooks
|
||||||
- easy_install: name=pip state=latest
|
- easy_install:
|
||||||
|
name: pip
|
||||||
|
state: latest
|
||||||
|
|
||||||
# Install Bottle into the specified virtualenv.
|
# Install Bottle into the specified virtualenv.
|
||||||
- easy_install: name=bottle virtualenv=/webapps/myapp/venv
|
- easy_install:
|
||||||
|
name: bottle
|
||||||
|
virtualenv: /webapps/myapp/venv
|
||||||
'''
|
'''
|
||||||
|
|
||||||
def _is_package_installed(module, name, easy_install, executable_arguments):
|
def _is_package_installed(module, name, easy_install, executable_arguments):
|
||||||
|
|||||||
Reference in New Issue
Block a user