From 0e009192879ee4f9c07d5cdc08d7071d4cd6cf2c Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Wed, 30 Oct 2024 10:47:39 +0000 Subject: [PATCH] Ensure that rabbitmq-erlang and rabbitmq-server repos use the same pins There is currently a mismatch between the apt pin priorities for the erlang and server rabbitmq repos. This patch sets the pinning to be the same. This should not affect normal package installation as recent changes to this role require installation of a specific version and will fail "safe" should that be unavailable. The intention with this patch is to ensure that the behaviour is the same for both the erlang and server repos in an abnormal situation where the installation might fail. Change-Id: I0d988572a102ca148059d198379d2a3115ecb795 --- tasks/install_apt.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/install_apt.yml b/tasks/install_apt.yml index 9c1fc22c..e5d1d415 100644 --- a/tasks/install_apt.yml +++ b/tasks/install_apt.yml @@ -30,6 +30,8 @@ apt_pinned_packages: - package: "*" release: "cloudsmith/rabbitmq/rabbitmq-erlang" + - package: "*" + release: "cloudsmith/rabbitmq/rabbitmq-server" - package: "erlang*" version: "1:{{ rabbitmq_erlang_package_version }}" priority: 1000