#!/bin/sh

# Daily update of Mnogosearch database 
# 
MNOGOCONF=/etc/mnogosearch/indexer.conf
MNOGOOPT="-e -l"

if [ -x /usr/bin/indexer ]; then
	/usr/bin/indexer $MNOGOOPT $MNOGOCONF 1>&2 
fi
