Puppet Class: profile::python38
- Defined in:
- modules/profile/manifests/python38.pp
Overview
SPDX-License-Identifier: Apache-2.0
Class profile::python38
Sharable class that makes python3.8 available. Available only for Buster (for the moment).
7 8 9 10 11 12 13 14 15 16 17 |
# File 'modules/profile/manifests/python38.pp', line 7
class profile::python38 {
if debian::codename::eq('buster') {
if ! defined( Apt::Package_from_component['component-pyall'] ) {
apt::package_from_component { 'component-pyall':
component => 'thirdparty/pyall',
packages => ['python3.8', 'libpython3.8']
}
}
}
}
|