From ad885c7f8a2ed47c6cf2c969940ff842b0ff1940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 20 Apr 2016 14:55:51 +0200 Subject: [PATCH] copr: give dist-git bigger /tmp We have 40G swap so this is fine. --- roles/distgit/tasks/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/distgit/tasks/main.yml b/roles/distgit/tasks/main.yml index 064b4ca264..3e37d1b530 100644 --- a/roles/distgit/tasks/main.yml +++ b/roles/distgit/tasks/main.yml @@ -35,6 +35,9 @@ - name: allow httpd to access git user content seboolean: name=httpd_read_user_content state=yes persistent=yes +- name: Secure tmpfs read only + mount: name=/dev/shm src=tmpfs fstype=tmpfs opts=defaults,size=40G state=present + # -- Dist Git -------------------------------------------- # This is the Git setup itself: group, root directory, scripts,... - name: create the distgit root directory (/srv/git)