From 6c124824fc08e7adc8ed1f4426479d58ccd6e900 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 19 May 2015 16:56:29 +0200 Subject: [PATCH] Move the tmp folder under /srv --- roles/pagure/frontend/templates/pagure.wsgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/pagure/frontend/templates/pagure.wsgi b/roles/pagure/frontend/templates/pagure.wsgi index 65267f8f1c..b04abac4d8 100644 --- a/roles/pagure/frontend/templates/pagure.wsgi +++ b/roles/pagure/frontend/templates/pagure.wsgi @@ -15,7 +15,7 @@ os.environ['PAGURE_CONFIG'] = '/etc/pagure/pagure.cfg' ## Is necessary to work around bug in libgit2: ## refs: https://github.com/libgit2/libgit2/issues/2965 ## and https://github.com/libgit2/libgit2/issues/2797 -os.environ['TEMP'] = '/var/tmp/' +os.environ['TEMP'] = '/srv/tmp/' ## The following is only needed if you did not install pagure ## as a python module (for example if you run it from a git clone).