#!/bin/sh

DATADIR=/usr/share/spikeproxy/
if [ ! -d "$DATADIR" ] ; then
	echo "ERR: Cannot find $DATADIR, is spikeproxy properly installed?"
	exit 1
fi

cd $DATADIR
exec python spkproxy.py $*
