mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-16 13:56:03 +08:00
24 lines
354 B
YAML
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
|