From 9e6bc326bad574437897681364799169545de2fc Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 6 Dec 2017 13:58:04 -0300 Subject: [PATCH] Bug 19760: Die if koha-conf is not accessible Content-Type: text/plain; charset=utf-8 We got a lot of support questions because scripts are executed without the correct environment/user. We could die and provide more useful information Tested on my kohadevbox VM by: 1) sudo chmod a-rx /etc/koha/sites/kohadev/koha-conf.xml 2) run help.pl from the command line to produce the desired die message 3) sudo chmod a+rx /etc/koha/sites/kohadev/koha-conf.xml 4) rerun help.pl successfully Signed-off-by: Jon Knight Signed-off-by: Marcel de Rooy --- Koha/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Config.pm b/Koha/Config.pm index f89ffb9..3b1e9eb 100644 --- a/Koha/Config.pm +++ b/Koha/Config.pm @@ -48,7 +48,7 @@ sub read_from_file { }; if ($@) { - warn "Error reading file $file"; + die "\nError reading file $file.\nMake sure you are using the correct user (use koha-shell should resolve this problem)\n\n"; } return $xml; -- 2.1.4