summaryrefslogtreecommitdiffstats
path: root/abs/core/ppp/ppp
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2014-02-16 23:58:36 (GMT)
committerJames Meyer <james.meyer@operamail.com>2014-02-19 19:03:04 (GMT)
commite2e6940857c635df49af42aced1e8a2fe293f665 (patch)
tree0613bcd7a821bfa860b4ebeecd19e0a0ef63f6c1 /abs/core/ppp/ppp
parent782a0571b32b84b46cac58f2561ac8ab4672decc (diff)
downloadlinhes_pkgbuild-e2e6940857c635df49af42aced1e8a2fe293f665.zip
linhes_pkgbuild-e2e6940857c635df49af42aced1e8a2fe293f665.tar.gz
linhes_pkgbuild-e2e6940857c635df49af42aced1e8a2fe293f665.tar.bz2
ppp:
update binary path to /usr/bin refs #961
Diffstat (limited to 'abs/core/ppp/ppp')
-rw-r--r--abs/core/ppp/ppp36
1 files changed, 0 insertions, 36 deletions
diff --git a/abs/core/ppp/ppp b/abs/core/ppp/ppp
deleted file mode 100644
index 16e01ba..0000000
--- a/abs/core/ppp/ppp
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/pppd`
-case "$1" in
- start)
- stat_busy "Starting PPP daemon"
- [ -z "$PID" ] && /usr/bin/pon
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon ppp
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping PPP daemon"
- [ ! -z "$PID" ] && poff -a &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon ppp
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0