Issue #5: Add docs around new state parameter for pip packages.

This commit is contained in:
Jeff Geerling 2017-10-31 14:41:59 -05:00
parent f6f5dbe037
commit a9886af978
1 changed files with 13 additions and 0 deletions

View File

@ -22,9 +22,22 @@ A list of packages to install with pip. Examples below:
version: "1.2.3"
- name: awscli
version: "1.11.91"
# Or specify bare packages to get the latest release.
- docker
- awscli
# Or uninstall a package.
- name: docker
state: absent
# Or update a package ot the latest version.
- name: docker
state: latest
# Or force a reinstall.
- name: docker
state: forcereinstall
## Dependencies