#!/bin/sh

prefix=/usr
exec_prefix=${prefix}
sysconfdir=/etc
conffile=ppc.conf

if [ -f ~/.${conffile} ]; then
	${exec_prefix}/bin/ppc.real ~/.${conffile}
elif [ -f ${sysconfdir}/${conffile} ]; then
	${exec_prefix}/bin/ppc.real ${sysconfdir}/${conffile}
else
	echo "ERROR: Config file not found! (/etc/${conffile} or ~/.${conffile})"
	exit 1
fi


