From e3e490786cf5ea19edf3ebbc01e4425ed2b2d7df Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 9 Apr 2021 10:21:40 -0700 Subject: [PATCH] koji_builder / staging: drop ntp/ntpdate for f34 Split out the koji_builder package installs so we can drop ntp/ntpdate for f34 (they were replaced by ntpsec and we use chrony anyhow). After we move prod to f34 we should merge these back. Signed-off-by: Kevin Fenzi --- roles/koji_builder/tasks/main.yml | 35 ++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/roles/koji_builder/tasks/main.yml b/roles/koji_builder/tasks/main.yml index 809c151144..0fa411b608 100644 --- a/roles/koji_builder/tasks/main.yml +++ b/roles/koji_builder/tasks/main.yml @@ -62,7 +62,7 @@ tags: - koji_builder -- name: add pkgs +- name: add pkgs (production) package: state: present name: @@ -93,9 +93,42 @@ - imagefactory-plugins-RHEVM - pykickstart - nosync + when: env == "production" tags: - koji_builder +- name: add pkgs (staging) + package: + state: present + name: + - koji-builder + - koji-builder-plugins + - python3-koji + - koji-containerbuild-builder + - strace + - mock + - kernel-firmware + - kernel-modules + - rsyslog + - audit + - pycdio + - python3-kickstart + - libvirt-client + - oz + - imagefactory + - imagefactory-plugins-TinMan + - imagefactory-plugins-Docker + - imagefactory-plugins-GCE + - imagefactory-plugins-vSphere + - imagefactory-plugins-ovfcommon + - imagefactory-plugins + - imagefactory-plugins-OVA + - imagefactory-plugins-RHEVM + - pykickstart + - nosync + when: env == "staging" + tags: + - koji_builder # # rpmautospec plugin #