Add a very basic aarch64-hub01.qa playbook.
This commit is contained in:
parent
ff9be3f88c
commit
600f4946e6
6 changed files with 101 additions and 2 deletions
23
tasks/koji/koji_hub.yml
Normal file
23
tasks/koji/koji_hub.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue