mirror of
https://github.com/rocky-linux/ansible-role-kojid.git
synced 2024-12-02 18:06:25 +00:00
31 lines
520 B
YAML
31 lines
520 B
YAML
---
|
|
# kojid configuration
|
|
|
|
# oz
|
|
- name: OZ Config
|
|
template:
|
|
src: oz.cfg.j2
|
|
dest: /etc/oz/oz.cfg
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart_kojid
|
|
|
|
- name: runroot config
|
|
template:
|
|
src: runroot.conf.j2
|
|
dest: /etc/kojid/plugins/runroot.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart_kojid
|
|
|
|
- name: Configure kojid
|
|
template:
|
|
src: kojid.conf.j2
|
|
dest: /etc/kojid/kojid.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart_kojid
|