#!/bin/sh

# Httpush wrapper for Debian GNU/Linux

RUNDIR=/usr/share/httpush
INC=$RUNDIR:${INC}
export INC

if [ -d $RUNDIR ] ; then
	cd $RUNDIR
	exec perl httpush.pl $*
else
	echo "ERROR: Cannot find httpush dir: $RUNDIR"
	exit 1
fi

