RE: Quitting pppd
Make a script and put it in your /usr/sbin directory. I have included mine (call
ed: ppp-off) to get you started.
Keith
#!/bin/sh
DEVICE=ppp0
#
# If the ppp0 fpid file is present then the program is running. Stop it.
if [ -r /var/run/$DEVICE.pid ]; then
kill -INT `cat /var/run/$DEVICE.pid`
#
#If the kill didn't work, then remove this lock file.
if [ ! "$?" = "0" ]; then
rm -f /var/run/$DEVICE.pid
echo "ERROR: Removed stale pid file"
exit 1
fi
#
# Success. Let pppd clean up its own junk.
echo "PPP link to $DEVICE terminated."
exit 0
fi
#
# The ppp process is not running.
echo "ERROR: PPP link is not active on $DEVICE"
exit 1
On 24-Nov-97 me wrote:
>After starting/quitting minicom, and then finishing internet connection,
>what is the best way to kill pppd without doing a 'kill xxxx' (or the pid
>of pppd? I haven't found that answer anywhere, and I have tried looking.
>If I missed a simple statement somewhere, my apologies ;)
>Mike
>
>
>-------------------------------------------------------------------------------
>
>Operating System(s) of CHOICE: Debian (Linux) and OS2Warp3
>
>me ISAT corecom.net
>http://www.corecom.net/endsley/
>
>-------------------------------------------------------------------------------
>
>
>
>--
>TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
>debian-user-request@lists.debian.org .
>Trouble? e-mail to templin@bucknell.edu .
-------------------------------------------------------------------------
E-Mail: Keith Holler <azcappy@psychobabble.dyn.ml.org> ICQ: #5386440
Date: 24-Nov-97
Time: 16:30:04
__ _
/ / (_)__ __ ____ __
/ /__/ / _ \/ // /\ \/ / . . . t h e c h o i c e o f a
/____/_/_//_/\_,_/ /_/\_\ G N U g e n e r a t i o n . . .
-------------------------------------------------------------------------
--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
debian-user-request@lists.debian.org .
Trouble? e-mail to templin@bucknell.edu .
Reply to: