diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-04 20:56:26 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-04 20:56:26 -0300 |
commit | eaa7dd3c7b19ec07ca6ace686561cf024c293ead (patch) | |
tree | 7238063a6d6d713aea5dc0235785a93611b3f81c /libre/rp-pppoe-libre/adsl | |
parent | 4ac32d4cf06625e145fe9b35d65c793192275d09 (diff) | |
download | abslibre-eaa7dd3c7b19ec07ca6ace686561cf024c293ead.tar.gz abslibre-eaa7dd3c7b19ec07ca6ace686561cf024c293ead.tar.bz2 abslibre-eaa7dd3c7b19ec07ca6ace686561cf024c293ead.zip |
rp-pppoe: remove libre suffix and add complex pkgrel
Diffstat (limited to 'libre/rp-pppoe-libre/adsl')
-rw-r--r-- | libre/rp-pppoe-libre/adsl | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/libre/rp-pppoe-libre/adsl b/libre/rp-pppoe-libre/adsl deleted file mode 100644 index 33bd91839..000000000 --- a/libre/rp-pppoe-libre/adsl +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -case "$1" in - start) - stat_busy "Starting ADSL Connection" - /usr/sbin/pppoe-start &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon adsl - stat_done - fi - ;; - stop) - stat_busy "Stopping ADSL Connection" - /usr/sbin/pppoe-stop &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon adsl - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 |