#!/bin/sh
#
#

#######################################################################
#
# Our Web Server application (perl scripts) work in in a distributed 
# enviroment. The technology we use is base upon the DBD::Oracle/DBI 
# CPAN perl modules.
#
# This script STOPS the required networking DBI Proxy daemon.
#
########################################################################


PIDS=$(ps ax | grep /usr/bin/dbiproxy | awk '{print $1}')

for pid in $PIDS
do
        kill -9 $pid
done

exit 0
