From adf8829783dba8d38fa5a05814e049a2a107fd2e Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Tue, 4 Nov 2014 17:59:56 +0000 Subject: [PATCH] make sure that apache creates group-writable logfiles, see MKWS-325 explictly call first: umask 002 --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 1b986b4..1f6060c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -105,7 +105,7 @@ node_modules node-modules: apache-start: bin/apache-template-update - ${APACHE_HTTPD} -f `pwd`/${TMP_DIR}/jasmine-dev-${APACHE_PORT}.conf + umask 002; ${APACHE_HTTPD} -f `pwd`/${TMP_DIR}/jasmine-dev-${APACHE_PORT}.conf APACHE_PID_FILE=${TMP_DIR}/mkws-jasmine-${APACHE_PORT}.pid apache-stop: -- 1.7.10.4