diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2013-10-19 05:00:45 -0700 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2013-10-19 05:00:45 -0700 |
commit | fad4977ae813277039c52a0a0d89dbc74753a3b0 (patch) | |
tree | 36d22ea2afcc6d3d34f826c390fea4844e51b351 /README.md | |
parent | f0d90d5b830d19911e920c92303626f3f8d0254e (diff) | |
parent | 31d96b912c16f82aa61d581a443a9b4c52914aa9 (diff) |
Merge pull request #36 from codesplicer/master
Updated docs to include egg param
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -60,11 +60,18 @@ Installs and manages packages from pip. **environment** - Additional environment variables required to install the packages. Default: none +**egg** - The egg name to use. Default: $name of the class, e.g. cx_Oracle + +**install_args** - Array of additional flags to pass to pip during installaton. Default: none + +**uninstall_args** - Array of additional flags to pass to pip during uninstall. Default: none + python::pip { 'cx_Oracle': - virtualenv => '/var/www/project1', - owner => 'appuser', - proxy => 'http://proxy.domain.com:3128', - environment => 'ORACLE_HOME=/usr/lib/oracle/11.2/client64', + virtualenv => '/var/www/project1', + owner => 'appuser', + proxy => 'http://proxy.domain.com:3128', + environment => 'ORACLE_HOME=/usr/lib/oracle/11.2/client64', + install_args => ['-e'], } ### python::requirements |