Add a very basic aarch64-hub01.qa playbook.

This commit is contained in:
Kevin Fenzi 2013-07-08 21:24:29 +00:00
parent ff9be3f88c
commit 600f4946e6
6 changed files with 101 additions and 2 deletions

23
tasks/koji/koji_hub.yml Normal file
View file

@ -0,0 +1,23 @@
---
#
# Setup koji hub server.
#
- name: install koji hub server packages
yum: name=$item state=installed
with_items:
- koji-hub
- koji-web
- koji-utils
- mod_ssl
- git
- gnupg2
tags:
- packages
- name: Set httpd to run on boot
service: name=httpd enabled=yes
ignore_errors: true
notify:
- restart httpd
tags:
- service