Add Documentation

This commit is contained in:
Schlueter 2015-05-21 12:23:05 -04:00 committed by Matt Clay
parent 1fc687b19d
commit 58863d3b48

View file

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