From: Russell Coker Date: Sun, 24 Nov 2002 23:30:44 +0000 (+0000) Subject: Added an alternate pair of scripts for starting and stopping ppp connections. X-Git-Tag: ppp-2.4.7~352 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=f234b25aa73603e3c840b8071c819e6202d5fd14 Added an alternate pair of scripts for starting and stopping ppp connections. --- diff --git a/scripts/poff b/scripts/poff new file mode 100644 index 0000000..659bfa7 --- /dev/null +++ b/scripts/poff @@ -0,0 +1,104 @@ +#!/bin/sh + +# $Id: poff,v 1.1 2002/11/24 23:30:44 etbe Exp $ +# Written by John Hasler and based on work +# by Phil Hands . Distributed under the GNU GPL + +if [ -x /usr/bin/kill ]; then + KILL="/usr/bin/kill" +else + KILL="/bin/kill" +fi +SIG=TERM +DONE="stopped" +MODE="" + +usage () +{ + cat <