Puppet Class: st2::profile::python
- Inherits:
- st2
- Defined in:
- manifests/profile/python.pp
Summary
StackStorm compatable installation of Python and dependencies.Overview
include st2::profile::python
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'manifests/profile/python.pp', line 22
class st2::profile::python (
String $version = $st2::python_version,
) inherits st2 {
notice("Python version: ${version}")
if !defined(Class['python']) {
# intall python and python-devel / python-dev
class { 'python':
version => $version,
dev => present,
manage_pip_package => false,
}
}
}
|