mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-01 02:51:23 +00:00
27 lines
531 B
YAML
27 lines
531 B
YAML
---
|
|
# Storage
|
|
- name: Ensure the koji mountpoint exists
|
|
file:
|
|
path: "{{ koji_mount }}"
|
|
state: directory
|
|
owner: apache
|
|
group: apache
|
|
mode: '0755'
|
|
|
|
- name: Mount the NFS store
|
|
mount:
|
|
path: "{{ koji_mount }}"
|
|
src: "{{ koji_nfs_path }}"
|
|
fstype: nfs
|
|
state: mounted
|
|
when: koji_nfs
|
|
|
|
- name: Create required default directories
|
|
file:
|
|
path: "{{ koji_mount }}/{{ item }}"
|
|
state: directory
|
|
owner: apache
|
|
group: apache
|
|
mode: '0755'
|
|
with_items: "{{ koji_default_directories }}"
|