From 043ff77dc636e78fad93c278725cae0a04519a73 Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Thu, 14 Jan 2016 10:31:11 -0500 Subject: [PATCH] python::pip expects (un)install-args to be strings Fix the documentation regarding this. The manifest docs are already correct. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f7daa02..3f64d93a 100644 --- a/README.md +++ b/README.md @@ -96,9 +96,9 @@ Installs and manages packages from pip. **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 +**install_args** - String 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 +**uninstall_args** - String of additional flags to pass to pip during uninstall. Default: none **timeout** - Timeout for the pip install command. Defaults to 1800. ```puppet @@ -109,7 +109,7 @@ Installs and manages packages from pip. owner => 'appuser', proxy => 'http://proxy.domain.com:3128', environment => 'ORACLE_HOME=/usr/lib/oracle/11.2/client64', - install_args => ['-e'], + install_args => '-e', timeout => 1800, } ```