Change example syntax on easy_install module
This commit is contained in:
parent
4c93d3edf0
commit
8a1bd4178a
1 changed files with 6 additions and 2 deletions
|
@ -90,10 +90,14 @@ author: "Matt Wright (@mattupstate)"
|
|||
|
||||
EXAMPLES = '''
|
||||
# Examples from Ansible Playbooks
|
||||
- easy_install: name=pip state=latest
|
||||
- easy_install:
|
||||
name: pip
|
||||
state: latest
|
||||
|
||||
# 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):
|
||||
|
|
Loading…
Reference in a new issue