mirror of
https://github.com/rocky-linux/ansible-role-kojid.git
synced 2024-11-15 09:41:25 +00:00
18 lines
320 B
YAML
18 lines
320 B
YAML
|
---
|
||
|
# Storage
|
||
|
- name: Ensure the koji mountpoint exists
|
||
|
file:
|
||
|
path: "{{ kojid_mount }}"
|
||
|
state: directory
|
||
|
owner: apache
|
||
|
group: apache
|
||
|
mode: '0755'
|
||
|
|
||
|
- name: Mount the NFS store
|
||
|
mount:
|
||
|
path: "{{ kojid_mount }}"
|
||
|
src: "{{ kojid_nfs_path }}"
|
||
|
fstype: nfs
|
||
|
state: mounted
|
||
|
when: koji_nfs
|