Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.

Commit f8aeff7

Browse files
committed
Ensure can support the version, Fixes voxpupuli#144
1 parent 35810f9 commit f8aeff7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Installs and manages packages from pip.
5858

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

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

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

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

0 commit comments

Comments
 (0)