From 61408e6d5cceaff2d4dd494cf39f37c391f9ef71 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Thu, 14 May 2015 07:04:19 -0400
Subject: [PATCH] Bug 14167 [QA Followup] - Add template and changes needed for packages
---
debian/scripts/koha-create | 4 ++++
debian/templates/koha-conf-site.xml.in | 1 +
debian/templates/log4perl-site.conf.in | 13 +++++++++++++
3 files changed, 18 insertions(+), 0 deletions(-)
create mode 100644 debian/templates/log4perl-site.conf.in
diff --git a/debian/scripts/koha-create b/debian/scripts/koha-create
index 2ed4e28..375707c 100755
--- a/debian/scripts/koha-create
+++ b/debian/scripts/koha-create
@@ -586,6 +586,10 @@ eof
generate_config_file koha-conf-site.xml.in \
"/etc/koha/sites/$name/koha-conf.xml"
+ # Generate and install the log4perl config file.
+ generate_config_file log4perl-site.conf.in \
+ "/etc/koha/sites/$name/log4perl.conf"
+
# Generate and install Zebra config files.
generate_config_file zebra-biblios-site.cfg.in \
"/etc/koha/sites/$name/zebra-biblios.cfg"
diff --git a/debian/templates/koha-conf-site.xml.in b/debian/templates/koha-conf-site.xml.in
index 7049cba..9820003 100644
--- a/debian/templates/koha-conf-site.xml.in
+++ b/debian/templates/koha-conf-site.xml.in
@@ -282,6 +282,7 @@ __END_SRU_PUBLICSERVER__
<zebra_lockdir>/var/lock/koha/__KOHASITE__</zebra_lockdir>
<use_zebra_facets>1</use_zebra_facets>
<queryparser_config>/etc/koha/searchengine/queryparser.yaml</queryparser_config>
+ <log4perl_conf>__KOHA_CONF_DIR__/log4perl.conf</log4perl_conf>
<!-- true type font mapping accoding to type from $font_types in C4/Creators/Lib.pm -->
<ttf>
diff --git a/debian/templates/log4perl-site.conf.in b/debian/templates/log4perl-site.conf.in
new file mode 100644
index 0000000..7d6b4e4
--- /dev/null
+++ b/debian/templates/log4perl-site.conf.in
@@ -0,0 +1,13 @@
+log4perl.logger.intranet = DEBUG, INTRANET
+log4perl.appender.INTRANET=Log::Log4perl::Appender::File
+log4perl.appender.INTRANET.filename=__LOG_DIR__/intranet-error.log
+log4perl.appender.INTRANET.mode=append
+log4perl.appender.INTRANET.layout=PatternLayout
+log4perl.appender.INTRANET.layout.ConversionPattern=[%d] [%p] %m %l %n
+
+log4perl.logger.opac = DEBUG, OPAC
+log4perl.appender.OPAC=Log::Log4perl::Appender::File
+log4perl.appender.OPAC.filename=__LOG_DIR__/opac-error.log
+log4perl.appender.OPAC.mode=append
+log4perl.appender.OPAC.layout=PatternLayout
+log4perl.appender.OPAC.layout.ConversionPattern=[%d] [%p] %m %l %n
--
1.7.2.5