mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-04 18:40:07 +08:00
This volume has been dropped, we now use the /swap swap-file, same as the other Copr servers.
18 lines
550 B
YAML
18 lines
550 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: create symlink for per-task-logs
|
|
file:
|
|
state: link
|
|
src: /var/lib/dist-git/per-task-logs
|
|
path: /var/lib/copr-dist-git/per-task-logs
|
|
|
|
- name: mount tmp on tmpfs
|
|
mount: name=/tmp src=tmpfs fstype=tmpfs state=mounted opts=defaults,size=39G,nr_inodes=2g
|