Skip to content

Commit

Permalink
Ensure can support the version, Fixes #144
Browse files Browse the repository at this point in the history
  • Loading branch information
shivapoudel committed Nov 15, 2014
1 parent 35810f9 commit f8aeff7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Installs and manages packages from pip.

**pkgname** - the name of the package to install. Required.

**ensure** - present/latest/absent. Default: present
**ensure** - present/latest/absent. You can also specify the version. Default: present

**virtualenv** - virtualenv to run pip in. Default: system (no virtualenv)

Expand All @@ -80,6 +80,7 @@ Installs and manages packages from pip.
```puppet
python::pip { 'cx_Oracle' :
pkgname => 'cx_Oracle',
ensure => '5.1.2', // Specify the version by default it's 'present' :)
virtualenv => '/var/www/project1',
owner => 'appuser',
proxy => 'http://proxy.domain.com:3128',
Expand Down

0 comments on commit f8aeff7

Please sign in to comment.