Pin erlang

Now that we run without erlang pinned by the repository itself,
let's pin it on our side.

Change-Id: Ifa491b102ad0db7f6dc645ca552d83b53bcf3b46
This commit is contained in:
Radosław Piliszek 2021-04-26 16:54:11 +00:00
parent f00961da22
commit b54789d093
3 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Package: rabbitmq-server
Pin: version 3.8.*
Pin-Priority: 1000
Package: erlang*
Pin: version 1:23.*
Pin-Priority: 1000

View File

@ -19,6 +19,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if base_package_type == 'rpm' %}
{% set kolla_toolbox_packages = [
'crudini',
'erlang-23.*',
'gcc',
'gdisk',
'git',

View File

@ -15,6 +15,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% if base_package_type == 'rpm' %}
{% set rabbitmq_packages = [
'hostname',
'erlang-23.*',
'rabbitmq-server-3.8.*'
] %}