Add Documentation
This commit is contained in:
parent
1fc687b19d
commit
58863d3b48
1 changed files with 7 additions and 1 deletions
|
@ -70,6 +70,12 @@ options:
|
|||
version_added: "1.3"
|
||||
required: false
|
||||
default: null
|
||||
state:
|
||||
description:
|
||||
- The desired state of the gem. C(latest) ensures that the latest version is installed.
|
||||
required: false
|
||||
choices: [present, latest]
|
||||
default: present
|
||||
notes:
|
||||
- Please note that the M(easy_install) module can only install Python
|
||||
libraries. Thus this module is not able to remove libraries. It is
|
||||
|
@ -83,7 +89,7 @@ author: Matt Wright
|
|||
|
||||
EXAMPLES = '''
|
||||
# Examples from Ansible Playbooks
|
||||
- easy_install: name=pip
|
||||
- easy_install: name=pip state=latest
|
||||
|
||||
# Install Bottle into the specified virtualenv.
|
||||
- easy_install: name=bottle virtualenv=/webapps/myapp/venv
|
||||
|
|
Loading…
Reference in a new issue