From 37f1f500ad7b1ebe4906f510a86c512bc44080f9 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Fri, 17 Nov 2017 18:38:36 +0000 Subject: [PATCH] add ansible to stage composer for container rebuild automation testing Signed-off-by: Adam Miller --- playbooks/groups/releng-compose.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/playbooks/groups/releng-compose.yml b/playbooks/groups/releng-compose.yml index d561686c81..b88daa1e26 100644 --- a/playbooks/groups/releng-compose.yml +++ b/playbooks/groups/releng-compose.yml @@ -80,5 +80,11 @@ state: latest when: ansible_architecture != "ppc64" + - name: install ansible for container automated rebuilds + package: + name: ansible + state: latest + when: env == "staging" and ansible_architecture != "ppc64" + handlers: - import_tasks: "{{ handlers_path }}/restart_services.yml"