From f5ceefebb7d7def53494d16515690591fb65341d Mon Sep 17 00:00:00 2001 From: Martin Ambrus Date: Sat, 28 Oct 2017 19:02:25 +0200 Subject: [PATCH] fix: new /var/log folder needs to be chmodded on Linux The /var/log game folder stores game logs (for now only access log) and as such must be writable by the server. --- install/templates/end.tpl | 1 + install/templates/greet.tpl | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/install/templates/end.tpl b/install/templates/end.tpl index 7d6ec50c..c24b52a8 100755 --- a/install/templates/end.tpl +++ b/install/templates/end.tpl @@ -27,6 +27,7 @@ All the files are placed. The database is created, so you can now start playing
  • CHMOD GameEngine back to 755 (sudo chmod -R 755 GameEngine)
  • CHMOD Prevention to 777 (sudo chmod -R 777 GameEngine/Prevention)
  • CHMOD Notes to 777 (sudo chmod -R 777 GameEngine/Notes)
  • +
  • CHMOD var/log to 777 (sudo chmod -R 777 var/log)