Skip to content

Commit

Permalink
Merge pull request #282 from adamcstephens/fix_pip_readme
Browse files Browse the repository at this point in the history
python::pip expects (un)install-args to be strings
  • Loading branch information
Shiva Poudel committed Jan 14, 2016
2 parents e9417e2 + 043ff77 commit 5ef86a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
}
```
Expand Down

0 comments on commit 5ef86a6

Please sign in to comment.