Files
fedora-infra_ansible/roles/copr/dist_git/tasks/mount_fs.yml

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