We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35810f9 commit f8aeff7Copy full SHA for f8aeff7
README.md
@@ -58,7 +58,7 @@ Installs and manages packages from pip.
58
59
**pkgname** - the name of the package to install. Required.
60
61
-**ensure** - present/latest/absent. Default: present
+**ensure** - present/latest/absent. You can also specify the version. Default: present
62
63
**virtualenv** - virtualenv to run pip in. Default: system (no virtualenv)
64
@@ -80,6 +80,7 @@ Installs and manages packages from pip.
80
```puppet
81
python::pip { 'cx_Oracle' :
82
pkgname => 'cx_Oracle',
83
+ ensure => '5.1.2', // Specify the version by default it's 'present' :)
84
virtualenv => '/var/www/project1',
85
owner => 'appuser',
86
proxy => 'http://proxy.domain.com:3128',
0 commit comments