fca732b81e
Currently in all the Dockerfile.j2 files, we are doing base distro if conditions for package names when installing via a binary. Rather than duplicating these base_distro in [<distros>], let's provide a single value for determining the binary installation method. This change adds a base_package_type which we can use to lookup if 'rpm' or if 'deb' rather than relying on specific distro names. Change-Id: I8a0c6c8fbc32a8cfa6932fddf28a449fceda3d49
8 lines
303 B
YAML
8 lines
303 B
YAML
---
|
|
features:
|
|
- |
|
|
Add `base_package_type` which can be used in Dockerfile.j2 files instead
|
|
of checking based on distro names. This will default to "rpm" for RHEL
|
|
based distros and "deb" for Debian based systems. This can also be overriden
|
|
to any string value via a configuration file.
|