summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVik Bhatti <vik@vikbhatti.com>2013-10-15 15:30:43 +0100
committerVik Bhatti <vik@vikbhatti.com>2013-10-15 15:30:43 +0100
commit31d96b912c16f82aa61d581a443a9b4c52914aa9 (patch)
tree36d22ea2afcc6d3d34f826c390fea4844e51b351
parente7b0e1475daaf778861220835a01c7c6f699a2b8 (diff)
Updated python::pip example to include install_args
-rw-r--r--README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index a259470..e9a2b85 100644
--- a/README.md
+++ b/README.md
@@ -67,10 +67,11 @@ Installs and manages packages from pip.
**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