mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 22:11:01 +08:00
16 lines
533 B
YAML
16 lines
533 B
YAML
- name: prepare mount point
|
|
file: state=directory path=/var/lib/dist-git
|
|
|
|
- name: mount up disk of copr repo
|
|
mount: name=/var/lib/dist-git src='LABEL=copr-dist-git' fstype=ext4 state=mounted
|
|
|
|
- name: prepare mount point
|
|
file: state=directory path=/var/lib/copr-dist-git
|
|
|
|
- name: mount up disk of copr repo
|
|
mount: name=/var/lib/copr-dist-git src='LABEL=cdg-log' fstype=ext4 state=mounted
|
|
when: not devel
|
|
|
|
- name: mount tmp on tmpfs
|
|
mount: name=/tmp src=tmpfs fstype=tmpfs state=mounted opts=defaults,size=39G,nr_inodes=2g
|