From f659ac21accdd58efc5fb6b670da3be5ae3c7509 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 4 May 2015 21:12:22 +0000 Subject: [PATCH] Install koji client on secondary01, needed for kernel-nodebug fetching. --- playbooks/groups/secondary.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/playbooks/groups/secondary.yml b/playbooks/groups/secondary.yml index dacab577ca..e14f74e12d 100644 --- a/playbooks/groups/secondary.yml +++ b/playbooks/groups/secondary.yml @@ -66,8 +66,11 @@ - include: "{{ tasks }}/motd.yml" - include: "{{ tasks }}/apache.yml" - - name: Install createrepo - yum: pkg=createrepo state=present + - name: Install some misc packages needed for various tasks + yum: pkg={{ item }} state=present + with_items: + - createrepo + - koji handlers: - include: "{{ handlers }}/restart_services.yml"