ansible-role-kojid/tasks/main.yml

20 lines
419 B
YAML
Raw Normal View History

2020-12-18 22:55:55 +00:00
---
2021-01-03 19:35:33 +00:00
# tasks
- name: Install necessary packages
import_tasks: packages.yml
- name: Apply required SELinux booleans
import_tasks: selinux_boolean.yml
- name: Create the users for kojid
import_tasks: users.yml
2021-01-04 08:17:40 +00:00
- name: Configure kojid
import_tasks: config.yml
2021-03-15 19:04:12 +00:00
when: not kojid_shared_builders | bool
2021-02-11 01:11:49 +00:00
- name: Configure shared kojid
import_tasks: shared/config_shared.yml
2021-03-15 19:04:12 +00:00
when: kojid_shared_builders | bool