2020-12-23 03:52:59 +00:00
|
|
|
---
|
2020-12-23 09:56:55 +00:00
|
|
|
# Storage
|
2020-12-23 03:52:59 +00:00
|
|
|
- name: Ensure the koji mountpoint exists
|
|
|
|
file:
|
|
|
|
path: "{{ koji_mount }}"
|
|
|
|
state: directory
|
2020-12-23 19:46:25 +00:00
|
|
|
owner: apache
|
|
|
|
group: apache
|
|
|
|
mode: '0755'
|
2020-12-23 03:52:59 +00:00
|
|
|
|
|
|
|
- name: Mount the NFS store
|
|
|
|
mount:
|
|
|
|
path: "{{ koji_mount }}"
|
|
|
|
src: "{{ koji_nfs_path }}"
|
|
|
|
fstype: nfs
|
|
|
|
state: mounted
|
2020-12-23 09:56:55 +00:00
|
|
|
when: koji_nfs
|
2020-12-23 03:52:59 +00:00
|
|
|
|
|
|
|
- name: Create required default directories
|
|
|
|
file:
|
|
|
|
path: "{{ koji_mount }}/{{ item }}"
|
|
|
|
state: directory
|
|
|
|
owner: apache
|
|
|
|
group: apache
|
2020-12-23 19:46:25 +00:00
|
|
|
mode: '0755'
|
2020-12-23 03:52:59 +00:00
|
|
|
with_items: "{{ koji_default_directories }}"
|