From 8b570caf8aba4b883a5631caca652191df3aed9e Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 22 Feb 2019 12:00:35 -0300 Subject: [PATCH] Bug 22396: Make koha-sip set KOHA_HOME and KOHA_CONF correctly This patch corrects a typo, and exports KOHA_CONF as other scripts do. To test: - Apply this patch - Run: $ # in kohadevbox $ perl misc4dev/cp_debian_files.pl - Try the new script $ sudo koha-sip --start kohadev => SUCCESS: tail -f /var/log/koha/kohadev/sip* doesn't show fatal errors anymore - Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens (cherry picked from commit 7128db531c18d3c75a4bad3424bd77732c0d4687) Signed-off-by: Martin Renvoize --- debian/scripts/koha-sip | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/scripts/koha-sip b/debian/scripts/koha-sip index da6909ba43..5b511be6f9 100755 --- a/debian/scripts/koha-sip +++ b/debian/scripts/koha-sip @@ -64,7 +64,8 @@ start_sip() if ! is_sip_running $name; then adjust_paths_dev_install $name - export KOHA_CONF PERL5LIB + export KOHA_HOME PERL5LIB + if [ "$DEV_INSTALL" = "" ]; then LIBDIR=$KOHA_HOME/lib else @@ -274,6 +275,8 @@ if [ $# -gt 0 ]; then if is_instance $name; then + export KOHA_CONF="/etc/koha/sites/$name/koha-conf.xml" + case $op in "start") start_sip $name -- 2.39.2