#!/bin/csh -f
# Generated and maintained by Olaf Mueller

set source			= "$1"
set target			= "$2"

set nonomatch


if (`whoami` != root) then
	echo FAILED. Must be run as root.
	exit 1
endif


if ( -f $target/OlafAM.app/lib/OM_*_fax.cfg ) then
	echo FAILED. Answering machine is configured
	exit 1
else
	echo OK
	exit 0
endif
