diff options
author | Francesco Colista <francesco.colista@gmail.com> | 2011-09-30 11:59:14 +0000 |
---|---|---|
committer | Francesco Colista <francesco.colista@gmail.com> | 2011-09-30 11:59:14 +0000 |
commit | 51f9990c81320981b106f3825ec80cf89f44e819 (patch) | |
tree | a8437b01e543414ea2e5ca194aea520b7b842301 /main/rp-pppoe/rp-pppoe.initd | |
parent | 9b3daba3fe823761dde3a312b21319e0f800c3c0 (diff) | |
download | aports-51f9990c81320981b106f3825ec80cf89f44e819.tar.bz2 aports-51f9990c81320981b106f3825ec80cf89f44e819.tar.xz |
main/rp-pppoe: fixed support for pppd and fix for initd
Diffstat (limited to 'main/rp-pppoe/rp-pppoe.initd')
-rw-r--r-- | main/rp-pppoe/rp-pppoe.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rp-pppoe/rp-pppoe.initd b/main/rp-pppoe/rp-pppoe.initd index 1861199965..b580dbe07a 100644 --- a/main/rp-pppoe/rp-pppoe.initd +++ b/main/rp-pppoe/rp-pppoe.initd @@ -6,7 +6,7 @@ depend() { start() { ebegin "Starting PPPOE Server" - test -x /usr/sbin/pppoe-server -a -f /etc/ppp/pppoe-server-options || exit 0 + test -x /usr/sbin/pppoe-server || exit 0 start-stop-daemon --start --exec /usr/sbin/pppoe-server -- ${PPPOE_PARAMS} eend $? } |