From b8ac9c6abfaf8c7b35ae488b40451bacbb9913d4 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 --- 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 ef2611173d..57ad478f93 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 @@ -276,6 +277,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.11.0