summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/rp-pppoe/scripts/adsl-init.in
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2003-02-17 13:58:09 +0000
committerMystery Man <unknown@mandriva.org>2003-02-17 13:58:09 +0000
commit0dba959cedf1129579809c769929713e3ad93099 (patch)
tree36721d86f80dddd9ac452269a0eb0f5d2159328c /mdk-stage1/rp-pppoe/scripts/adsl-init.in
parenta5d6fe3636f8080b9603572894ed317aaed6d2c8 (diff)
downloaddrakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar.gz
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar.bz2
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.tar.xz
drakx-backup-do-not-use-0dba959cedf1129579809c769929713e3ad93099.zip
This commit was manufactured by cvs2svn to create tag 'V9_1_0_34mdk'.V9_1_0_34mdk
Diffstat (limited to 'mdk-stage1/rp-pppoe/scripts/adsl-init.in')
-rwxr-xr-xmdk-stage1/rp-pppoe/scripts/adsl-init.in64
1 files changed, 0 insertions, 64 deletions
diff --git a/mdk-stage1/rp-pppoe/scripts/adsl-init.in b/mdk-stage1/rp-pppoe/scripts/adsl-init.in
deleted file mode 100755
index ab9146fd3..000000000
--- a/mdk-stage1/rp-pppoe/scripts/adsl-init.in
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-#
-# adsl This script starts or stops an ADSL connection
-#
-# chkconfig: 2345 99 01
-# description: Connects to ADSL provider
-#
-# Copyright (C) 2000 Roaring Penguin Software Inc. This software may
-# be distributed under the terms of the GNU General Public License, version
-# 2 or any later version.
-
-# Source function library if it exists
-test -r /etc/rc.d/init.d/functions && . /etc/rc.d/init.d/functions
-
-# From AUTOCONF
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-
-# Paths to programs
-START=@sbindir@/adsl-start
-STOP=@sbindir@/adsl-stop
-STATUS=@sbindir@/adsl-status
-case "$1" in
- start)
- echo -n "Bringing up ADSL link"
-
- $START
- if [ $? = 0 ] ; then
- touch /var/lock/subsys/adsl
- echo_success
- else
- echo_failure
- fi
- echo ""
- ;;
-
- stop)
- echo -n "Shutting down ADSL link"
-
- $STOP > /dev/null 2>&1
- if [ $? = 0 ] ; then
- rm -f /var/lock/subsys/adsl
- echo_success
- else
- echo_failure
- fi
- echo ""
- ;;
-
- restart)
- $0 stop
- $0 start
- ;;
-
- status)
- $STATUS
- ;;
-
- *)
- echo "Usage: adsl {start|stop|restart|status}"
- exit 1
-esac
-
-exit 0