Skip to content

Commit 371dc10

Browse files
committed
Correct python::pip::environment parameter example
The example for `python::pip{'cx_Oracle':...}` used and invalid environment parameter.
1 parent 22cd11b commit 371dc10

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ python::pip { 'cx_Oracle' :
628628
virtualenv => '/var/www/project1',
629629
owner => 'appuser',
630630
proxy => 'http://proxy.domain.com:3128',
631-
environment => 'ORACLE_HOME=/usr/lib/oracle/11.2/client64',
631+
environment => ['ORACLE_HOME=/usr/lib/oracle/11.2/client64'],
632632
install_args => '-e',
633633
timeout => 1800,
634634
}

manifests/pip.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# virtualenv => '/var/www/project1',
3434
# owner => 'appuser',
3535
# proxy => 'http://proxy.domain.com:3128',
36-
# environment => 'ORACLE_HOME=/usr/lib/oracle/11.2/client64',
36+
# environment => ['ORACLE_HOME=/usr/lib/oracle/11.2/client64'],
3737
# install_args => '-e',
3838
# timeout => 1800,
3939
# }

0 commit comments

Comments
 (0)