#!/bin/sh

u=`whoami`

a=`grep -v '^#' /usr/local/etc/authtetracorder.list | grep $u | grep $1`

if [ -z "$a" ]
then
	echo 'authentication failure'
	exit 1
else
	exit 0
fi
