#!/bin/bash

# Copyright (c) 1999,2000 by Network TeleSystems, Inc.
# All rights reserved.
# Internet http://www.nts.com
#
# Please direct all support-related calls to your licensed Internet Service 
# Provider.  NTS does not provide direct support.  NTS works through Internet
# Service Providers that have licensed our software.

if [ -f "/var/run/ppp0.pid" ]; then
   kill -s SIGINT `head -1 /var/run/ppp0.pid`
elif [ -f "/var/run/ppp1.pid" ]; then
   kill -s SIGINT `head -1 /var/run/ppp1.pid`
else
   echo "Cannot find PID to stop."
fi
