#!/bin/sh
# 
# tracking, short shell wrapper for tracker.pl by 
# Brian Poole, http://www.cerias.purdue.edu/homes/rajak/
#
# Included with Netfire
#
# Hal Burgiss <hal@foobox.net>
#
#################################################################
# Adapted by Nick Warne for Slackware packaging - nick@linicks.net

if [ ! -e /proc/net/ip_conntrack ]
then
echo "Exit: You do not have connection tracking (IPTABLES) running!"
exit 1;

fi

TOOL=/usr/bin/tracker.pl

[ -x $TOOL ] && clear &&\
watch -n1  "$TOOL ; echo C-c to quit" ||\
echo `basename $TOOL` not found

#--- eof tracking
