mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 11:48:17 +00:00
14 lines
320 B
Puppet
14 lines
320 B
Puppet
class { 'python':
|
|
version => 'system',
|
|
dev => true,
|
|
virtualenv => true,
|
|
}
|
|
|
|
python::virtualenv { '/var/www/project1':
|
|
ensure => present,
|
|
version => 'system',
|
|
requirements => '/var/www/project1/requirements.txt',
|
|
proxy => 'http://proxy.domain.com:3128',
|
|
systempkgs => true,
|
|
}
|