Puppet Class: striker::build
- Defined in:
- modules/striker/manifests/build.pp
Overview
SPDX-License-Identifier: Apache-2.0
Class: striker::build
Packages and config needed for a host that can build wheels for Striker
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'modules/striker/manifests/build.pp', line 6
class striker::build {
debian::codename::require('stretch')
ensure_packages([
'build-essential',
'git-review',
'libffi-dev',
'libldap2-dev',
'libmariadbclient-dev',
'libsasl2-dev',
'libssl-dev',
'python3',
'python3-dev',
'python3-venv',
'python3-virtualenv',
'python3-wheel',
'realpath',
])
}
|