From 8c2e74afd5646f68cea6bd6c15d9661c651b176d Mon Sep 17 00:00:00 2001 From: Eric Ball Date: Wed, 22 Jul 2020 18:27:12 -0700 Subject: [PATCH] Add install of Sigul client on CentOS 7 Our current signing scripts download and install Sigul only when executing the signing scripts. However, the servers hosting this package are not reliable, and we should see significant performance improvements by having the package pre-loaded on CentOS 7 builders (the only builders capable of using Sigul). Issue: RELENG-3077 Change-Id: I35ac34a3619f4018331f280745f4ff3d5c864fa9 Signed-off-by: Eric Ball --- provision/install-base-pkgs-RedHat.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/provision/install-base-pkgs-RedHat.yaml b/provision/install-base-pkgs-RedHat.yaml index f1f593b..201abfb 100644 --- a/provision/install-base-pkgs-RedHat.yaml +++ b/provision/install-base-pkgs-RedHat.yaml @@ -32,6 +32,15 @@ state: latest become: true +- name: Install sigul client + yum: + name: + - https://kojipkgs.fedoraproject.org/repos-dist/epel7-infra/latest/x86_64/Packages/s/sigul-0.207-1.el7.x86_64.rpm + state: latest + become: true + when: + - ansible_facts['distribution_major_version'] is version('8', '<') + - name: Swap to git224 block: - name: Install yum-plugin-replace -- 2.16.6