mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 19:58:03 +00:00
13 lines
173 B
Puppet
13 lines
173 B
Puppet
class { 'python':
|
|
pip => false,
|
|
version => '3',
|
|
}
|
|
|
|
python::pyvenv { '/opt/uwsgi':
|
|
}
|
|
|
|
python::pip { 'uwsgi':
|
|
ensure => 'latest',
|
|
virtualenv => '/opt/uwsgi'
|
|
}
|