From b5ebab5efca820b40c7342d1ea75961ee16acb61 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 19 May 2020 14:26:56 +0200 Subject: [PATCH] Bug 25284: chown /var/log/koha log files on koha-create To prevent Apache to create intranet-error.log and opac-error.log with root permission we chown them after it has been restarted (and so created them) when a new Koha instance is created --- debian/scripts/koha-create | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/scripts/koha-create b/debian/scripts/koha-create index 45c1ef644f..b90e7d4e23 100755 --- a/debian/scripts/koha-create +++ b/debian/scripts/koha-create @@ -757,6 +757,8 @@ then # Get letsencrypt certificates letsencrypt_instance fi + + chown $username:$username /var/log/koha/$name/*.log fi -- 2.20.1