Mercurial > repos > other > Puppet
annotate modules/python/examples/virtualenv.pp @ 272:c42fb28cff86
Update to a newer Python module
This also pulls in an EPEL module (which we don't use) and a newer
stdlib version.
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 03 Jan 2020 19:56:04 +0000 |
parents | |
children |
rev | line source |
---|---|
272 | 1 class { 'python': |
2 version => 'system', | |
3 dev => true, | |
4 virtualenv => true, | |
5 } | |
6 | |
7 python::virtualenv { '/var/www/project1': | |
8 ensure => present, | |
9 version => 'system', | |
10 requirements => '/var/www/project1/requirements.txt', | |
11 proxy => 'http://proxy.domain.com:3128', | |
12 systempkgs => true, | |
13 } |