ansible-role-kojid/tasks/storage.yml

18 lines
326 B
YAML
Raw Normal View History

2021-01-03 19:35:33 +00:00
---
# 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
2021-01-24 21:57:49 +00:00
when: kojid_nfs|bool