From: Michael Hafen Date: Wed, 13 Aug 2008 18:43:52 +0000 (-0600) Subject: Have zebrasrv log less X-Git-Tag: v3.00.01.005~450 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=af87122b1e8e8648c8f3fb06214c371743457719;p=koha.git Have zebrasrv log less Better to fill the hard drive with biblio than with zebra logs ;) Signed-off-by: Galen Charlton --- diff --git a/misc/bin/koha-zebra-ctl.sh b/misc/bin/koha-zebra-ctl.sh index 5b248d1c32..01e4fad458 100755 --- a/misc/bin/koha-zebra-ctl.sh +++ b/misc/bin/koha-zebra-ctl.sh @@ -12,6 +12,7 @@ RUNDIR=__ZEBRA_RUN_DIR__ LOCKDIR=__ZEBRA_LOCK_DIR__ # you may need to change this depending on where zebrasrv is installed ZEBRASRV=__PATH_TO_ZEBRA__/zebrasrv +ZEBRAOPTIONS="-v none,fatal,warn" test -f $ZEBRASRV || exit 0 @@ -44,7 +45,7 @@ case "$1" in fi fi - daemon --name=$NAME --errlog=$ERRLOG --stdout=$STDOUT --output=$OUTPUT --verbose=1 --respawn --delay=30 $OTHERUSER -- $ZEBRASRV -f $KOHA_CONF + daemon --name=$NAME --errlog=$ERRLOG --stdout=$STDOUT --output=$OUTPUT --verbose=1 --respawn --delay=30 $OTHERUSER -- $ZEBRASRV $ZEBRAOPTIONS -f $KOHA_CONF ;; stop) echo "Stopping Zebra Server"