mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-24 13:51:26 +00:00
22 lines
435 B
YAML
22 lines
435 B
YAML
|
---
|
||
|
|
||
|
- name: Ensure the koji mountpoint exists
|
||
|
file:
|
||
|
path: "{{ koji_mount }}"
|
||
|
state: directory
|
||
|
|
||
|
- name: Mount the NFS store
|
||
|
mount:
|
||
|
path: "{{ koji_mount }}"
|
||
|
src: "{{ koji_nfs_path }}"
|
||
|
fstype: nfs
|
||
|
state: mounted
|
||
|
|
||
|
- name: Create required default directories
|
||
|
file:
|
||
|
path: "{{ koji_mount }}/{{ item }}"
|
||
|
state: directory
|
||
|
owner: apache
|
||
|
group: apache
|
||
|
with_items: "{{ koji_default_directories }}"
|