Files
fedora-infra_ansible/tasks/koji/koji_hub.yml
2013-07-08 21:24:29 +00:00

24 lines
354 B
YAML

---
#
# 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