From f234b25aa73603e3c840b8071c819e6202d5fd14 Mon Sep 17 00:00:00 2001 From: Russell Coker Date: Sun, 24 Nov 2002 23:30:44 +0000 Subject: [PATCH] Added an alternate pair of scripts for starting and stopping ppp connections. --- scripts/poff | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++ scripts/pon | 38 +++++++++++++++++++ 2 files changed, 142 insertions(+) create mode 100644 scripts/poff create mode 100644 scripts/pon 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 <